RadioCoordinator.nc
上传用户:joranyuan
上传日期:2022-06-23
资源大小:3306k
文件大小:2k
源码类别:

网络

开发平台:

Others

  1. /* tab:4
  2.  * "Copyright (c) 2002 and The Regents of the University 
  3.  * of California.  All rights reserved.
  4.  *
  5.  * Permission to use, copy, modify, and distribute this software and its
  6.  * documentation for any purpose, without fee, and without written agreement is
  7.  * hereby granted, provided that the above copyright notice and the following
  8.  * two paragraphs appear in all copies of this software.
  9.  * 
  10.  * IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR
  11.  * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT
  12.  * OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF
  13.  * CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  14.  * 
  15.  * THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,
  16.  * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
  17.  * AND FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE PROVIDED HEREUNDER IS
  18.  * ON AN "AS IS" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO
  19.  * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS."
  20.  *
  21.  * Authors:   Kamin Whitehouse, Joe Polastre, Vladimir Bychkovsky
  22.  *
  23.  */
  24. interface RadioCoordinator
  25. {
  26.   /**
  27.    * This event indicates that the start symbol has been detected 
  28.    * and its offset
  29.    */
  30.   async event void startSymbol(uint8_t bitsPerBlock, uint8_t offset, TOS_MsgPtr msgBuff);
  31.   /**
  32.    * This event indicates that another byte of the current packet has been rxd
  33.    */
  34.   async event void byte(TOS_MsgPtr msg, uint8_t byteCount);
  35.   /**
  36.    * Signals the start of processing of a new block by the radio. This
  37.    * event is signaled regardless of the state of the radio.  This
  38.    * function is currently used to aid radio-based time synchronization.
  39.    */
  40.   async event void blockTimer();
  41. }