]> oss.titaniummirror.com Git - tinyos-2.x.git/blobdiff - apps/tosthreads/apps/TestJoin/TestJoinAppC.nc
Updated documentation on all of the applications as well as modified the TestJoin...
[tinyos-2.x.git] / apps / tosthreads / apps / TestJoin / TestJoinAppC.nc
index 4a8e08623e3a023612fb5e0096c8f01f634d269d..4676b021d344d1d73ba372f9c5cb3821ebf5da2e 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 first see LED0 flash twice with a period of
+ * 1s and LED1 flash 4 times with a period of 1s. After these are done,
+ * LED2 should come on and stay on.
+ *
  * @author Kevin Klues (klueska@cs.stanford.edu)
  */
 
@@ -40,13 +48,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;
 }