]> oss.titaniummirror.com Git - tinyos-2.x.git/blobdiff - apps/Null/NullC.nc
USCI using uint8_t for len instead of required uint16_t.
[tinyos-2.x.git] / apps / Null / NullC.nc
index a104c74a5f7166b966f41bc83d7855fbfcbfa359..6320e88ec4ffeb52db4d53a03139d694d60b98ae 100644 (file)
@@ -31,7 +31,9 @@
 /**
  * Null is an empty skeleton application.  It is useful to test that the
  * build environment is functional in its most minimal sense, i.e., you
- * can correctly compile an application.
+ * can correctly compile an application. It is also useful to test the
+ * minimum power consumption of a node when it has absolutely no 
+ * interrupts or resources active.
  *
  * @author Cory Sharp <cssharp@eecs.berkeley.edu>
  * @date February 4, 2006
@@ -42,8 +44,8 @@ module NullC
 }
 implementation
 {
-  event void Boot.booted()
-  {
+  event void Boot.booted() {
+    // Do nothing.
   }
 }