]> oss.titaniummirror.com Git - tinyos-2.x.git/blobdiff - tos/interfaces/StdControl.nc
get rid of +5 for rounding, change arg name in functions in CtpInfo to match the...
[tinyos-2.x.git] / tos / interfaces / StdControl.nc
index 1a6a3fb341a76301ca09ada29ea3485cec19a230..abb02c9f7906e1c6dc5cc4140a9eaafdaedf2338 100644 (file)
 interface StdControl
 {
   /**
-  * Start this component and all of its subcomponents.
-  *
-  * @return SUCCESS if the component was successfully turned on<br>
-  *         FAIL otherwise
-  */
+   * Start this component and all of its subcomponents.
+   *
+   * @return SUCCESS if the component was either already on or was 
+   *         successfully turned on<br>
+   *         FAIL otherwise
+   */
   command error_t start();
 
   /**
-  * Stop the component and any pertinent subcomponents (not all
-  * subcomponents may be turned off due to wakeup timers, etc.).
-  *
-  * @return SUCCESS if the component was successfully turned off<br>
-  *         FAIL otherwise
-  */
+   * Stop the component and any pertinent subcomponents (not all
+   * subcomponents may be turned off due to wakeup timers, etc.).
+   *
+   * @return SUCCESS if the component was either already off or was 
+   *         successfully turned off<br>
+   *         FAIL otherwise
+   */
   command error_t stop();
 }