4 thread with comments

Dependencies:   C12832 LM75B mbed-rtos mbed

Fork of rtos_basic by mbed official

Revision:
11:530ae198e5f2
Parent:
10:8635af078e7c
--- a/main.cpp	Fri Feb 13 00:23:28 2015 +0000
+++ b/main.cpp	Fri Feb 13 00:28:04 2015 +0000
@@ -60,10 +60,10 @@
 int main() {                            //Main
     Thread thread_LED_Flash(led_R_B_flash);       
     Thread thread_LED_dim(led_dim);     
-    
+    int i=0;
         while (1) {
 
-            printf("Hello_World\r\n");           
+            printf("Hello_World %d \r\n", i++);           
             Thread::wait(5000);
         }