]> oss.titaniummirror.com Git - tinyos-2.x.git/blobdiff - apps/tosthreads/capps/Blink/Blink.c
Merge TinyOS 2.1.1 into master.
[tinyos-2.x.git] / apps / tosthreads / capps / Blink / Blink.c
index ca19ae8d6e921309dd642665973b054c10f83663..c9e733be06d5f8ac194770a7d71099f2e7d3f78e 100644 (file)
  */
  
 /**
+ * Blink is a simple application used to test the basic functionality of
+ * TOSThreads.
+ *
+ * Upon a successful burn, you should see LED0 flashing with a period of every
+ * 200ms, and LED1 and LED2 flashing in unison with a period of 1000ms.
+ *
  * @author Kevin Klues (klueska@cs.stanford.edu)
  */
 
@@ -57,7 +63,7 @@ void tosthread_main(void* arg) {
 void blink0_thread(void* arg) {
   for(;;) {
     led0Toggle();
-    tosthread_sleep(1000);
+    tosthread_sleep(200);
   }
 }