mbed-rtos support for nucleo f401re

Dependencies:   mbed-rtos_F401 mbed-src

Fork of rtos_basic by mbed official

Revision:
7:ae8015ac5102
Parent:
3:c92e21f305d8
Child:
8:88582a97af69
--- a/main.cpp	Tue Jun 04 16:01:32 2013 +0100
+++ b/main.cpp	Sat Apr 19 13:00:51 2014 +0000
@@ -1,7 +1,7 @@
 #include "mbed.h"
 #include "rtos.h"
  
-DigitalOut led1(LED1);
+Serial pc(SERIAL_TX, SERIAL_RX);
 DigitalOut led2(LED2);
  
 void led2_thread(void const *args) {
@@ -13,9 +13,34 @@
  
 int main() {
     Thread thread(led2_thread);
-    
+    int i = 1;
+   
+    while(1) { 
+      wait(1);
+       pc.printf("main thread running !\n");
+       Thread::wait(1000);
+  }
+}
+#include "mbed.h"
+#include "rtos.h"
+ 
+Serial pc(SERIAL_TX, SERIAL_RX);
+DigitalOut led2(LED2);
+ 
+void led2_thread(void const *args) {
     while (true) {
-        led1 = !led1;
-        Thread::wait(500);
+        led2 = !led2;
+        Thread::wait(1000);
     }
 }
+ 
+int main() {
+    Thread thread(led2_thread);
+    int i = 1;
+   
+    while(1) { 
+      wait(1);
+       pc.printf("main thread running !\n");
+       Thread::wait(1000);
+  }
+}