]> oss.titaniummirror.com Git - tinyos-2.x.git/blobdiff - tos/lib/mac/tkn154/interfaces/private/RadioOff.nc
+ modified radio driver (PHY) interfaces: CSMA-CA algorithm is now pushed to radio...
[tinyos-2.x.git] / tos / lib / mac / tkn154 / interfaces / private / RadioOff.nc
index 24317842876f3fac0055f126c285827b5df3dfdf..3405932cf50b0b308e7a5b21a0bfd478c37e3369 100644 (file)
@@ -37,14 +37,14 @@ interface RadioOff
 {
 
   /** 
-   * Switches the radio off and changes the radio state to RADIO_OFF. This
+   * Disables the transceiver and changes the radio state to RADIO_OFF. This
    * command will succeed only if the current state of the radio is either
    * TX_LOADED, RX_PREPARED or RECEIVING.
    *
-   * @return EALREADY if radio is already switched off <br> FAIL if radio the
-   * current radio state is neither TX_LOADED, RX_PREPARED nor RECEIVING <br>
-   * SUCCESS if the command was accepted and the <tt>offDone()</tt> event will
-   * be signalled.
+   * @return SUCCESS if the command was accepted and the <tt>offDone()</tt>
+   * event will be signalled; EALREADY if radio is already switched off; FAIL
+   * if the current radio state is neither TX_LOADED, RX_PREPARED nor
+   * RECEIVING.
    */
   async command error_t off();
 
@@ -54,6 +54,9 @@ interface RadioOff
    **/  
   async event void offDone();
 
- /** @return TRUE if the radio is in the state RADIO_OFF, FALSE otherwise */
-  async command bool isOff();
+  /** 
+   * Tells whether the radio is in state RADIO_OFF.
+   * @return TRUE if the radio is in the state RADIO_OFF, FALSE otherwise 
+   */
+  async command bool isOff(); 
 }