]> oss.titaniummirror.com Git - tinyos-2.x.git/blobdiff - apps/tosthreads/apps/TestJoin/TestJoinAppC.nc
Address comments for README from RC4 testing, and clarify the expected LED behavior
[tinyos-2.x.git] / apps / tosthreads / apps / TestJoin / TestJoinAppC.nc
index 4a8e08623e3a023612fb5e0096c8f01f634d269d..08e106aaa132f1225e97fe5558b4bfc2f2788824 100644 (file)
  */
  
 /**
+ * TestJoin is a simple application used to test the basic functionality of
+ * the join() system call for waiting on a set of threads in a TOSThreads 
+ * based application.
+ * 
+ * Upon a successful burn, you should see LED2 toggles at the end of each time
+ * period. In addition, during each time period, LED0 should toggle twice, and LED1
+ * toggles four times (with an interval of 1 sec). This LED behavior repeats in the
+ * next time period.
+ *
  * @author Kevin Klues (klueska@cs.stanford.edu)
  */
 
@@ -40,13 +49,11 @@ implementation {
   components new ThreadC(100) as NullThread;
   components new ThreadC(100) as TinyThread0;
   components new ThreadC(100) as TinyThread1;
-  components new ThreadC(100) as TinyThread2;
 
   MainC.Boot <- TestJoinC;
   TestJoinC.NullThread -> NullThread;
   TestJoinC.TinyThread0 -> TinyThread0;
   TestJoinC.TinyThread1 -> TinyThread1; 
-  TestJoinC.TinyThread2 -> TinyThread2;
 
   TestJoinC.Leds -> LedsC;
 }