rtos4

Dependencies:   mbed-rtos mbed

Fork of rtos_basic by mbed official

Files at this revision

API Documentation at this revision

Comitter:
xiscosc
Date:
Fri Nov 13 14:43:17 2015 +0000
Parent:
6:209f4db62daf
Commit message:
rtos4

Changed in this revision

main.cpp Show annotated file Show diff for this revision Revisions of this file
mbed-rtos.lib Show annotated file Show diff for this revision Revisions of this file
mbed.bld Show annotated file Show diff for this revision Revisions of this file
diff -r 209f4db62daf -r 68fb4465a2c3 main.cpp
--- a/main.cpp	Tue Jun 04 16:01:32 2013 +0100
+++ b/main.cpp	Fri Nov 13 14:43:17 2015 +0000
@@ -1,21 +1,37 @@
 #include "mbed.h"
 #include "rtos.h"
- 
-DigitalOut led1(LED1);
-DigitalOut led2(LED2);
- 
-void led2_thread(void const *args) {
+
+Mutex mux;
+int a;
+
+
+void thread1(void const *args) {
+
     while (true) {
-        led2 = !led2;
-        Thread::wait(1000);
+            mux.lock();
+            a++;
+            printf("LOW %d \r\n",a);
+            mux.unlock();
     }
 }
- 
-int main() {
-    Thread thread(led2_thread);
-    
+
+void thread2(void const *args) {
+
     while (true) {
-        led1 = !led1;
-        Thread::wait(500);
-    }
+            mux.lock();
+            a++;
+            printf("HIGH %d \r\n",a);
+            mux.unlock();
+        }
 }
+
+int main() {
+    a = 0;
+    Thread my_thread1(thread1, NULL, osPriorityLow);
+    Thread::wait(10);
+    Thread my_thread2(thread2, NULL, osPriorityHigh);
+
+    while (true) {
+            printf("MEDIUM \r\n");
+        }
+}
diff -r 209f4db62daf -r 68fb4465a2c3 mbed-rtos.lib
--- a/mbed-rtos.lib	Tue Jun 04 16:01:32 2013 +0100
+++ b/mbed-rtos.lib	Fri Nov 13 14:43:17 2015 +0000
@@ -1,1 +1,1 @@
-https://mbed.org/users/mbed_official/code/mbed-rtos/
\ No newline at end of file
+https://mbed.org/users/mbed_official/code/mbed-rtos/#6d90423c236e
diff -r 209f4db62daf -r 68fb4465a2c3 mbed.bld
--- a/mbed.bld	Tue Jun 04 16:01:32 2013 +0100
+++ b/mbed.bld	Fri Nov 13 14:43:17 2015 +0000
@@ -1,1 +1,1 @@
-http://mbed.org/users/mbed_official/code/mbed/builds/
\ No newline at end of file
+http://mbed.org/users/mbed_official/code/mbed/builds/9296ab0bfc11
\ No newline at end of file