]> oss.titaniummirror.com Git - tinyos-2.x.git/commitdiff
a dummy checkin to test the autobuild system - will be reverted tomorrow!
authorbeutel <beutel>
Wed, 29 Aug 2007 21:30:05 +0000 (21:30 +0000)
committerbeutel <beutel>
Wed, 29 Aug 2007 21:30:05 +0000 (21:30 +0000)
apps/Null/NullAppC.nc
apps/Null/NullC.nc

index 0fc7c971a05b33804bdcd3bd22cb8a58e331d596..c55c3b8c3d143ea798d91945bade8aabac2450cc 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
@@ -40,6 +42,9 @@
 configuration NullAppC{}
 implementation {
   components MainC, NullC;
+  components new TimerMilliC() as Timer0;
+  components new TimerMilliC() as Timer1;
+  components new TimerMilliC() as Timer2;
 
   MainC.Boot <- NullC;
 }
index 4602a91c4cacbb8d4c8c2627f2a4697b1ce24a0a..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