Basic example showing the CMSIS-RTOS queue API with a producer in an ISR and a consumer in a normal thread

Dependencies:   mbed mbed-rtos

mbed 2 and mbed OS 5

This is an mbed 2 example. mbed OS 5 has integrated the mbed library with mbed-rtos. For an mbed-os example, please see:

Import programrtos_isr

isr example

Files at this revision

API Documentation at this revision

Comitter:
emilmont
Date:
Fri Nov 23 11:03:57 2012 +0000
Parent:
1:aa8ea13b6a07
Commit message:
update libraries

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 aa8ea13b6a07 -r 39180377e223 main.cpp
--- a/main.cpp	Fri Jul 13 16:13:14 2012 +0000
+++ b/main.cpp	Fri Nov 23 11:03:57 2012 +0000
@@ -12,7 +12,7 @@
     myled = !myled;
 }
 
-void queue_thread(void const *argument) {
+void queue_thread(void const *args) {
     while (true) {
        osMessagePut(queue, 1, 0);
        osDelay(1000);
diff -r aa8ea13b6a07 -r 39180377e223 mbed-rtos.lib
--- a/mbed-rtos.lib	Fri Jul 13 16:13:14 2012 +0000
+++ b/mbed-rtos.lib	Fri Nov 23 11:03:57 2012 +0000
@@ -1,1 +1,1 @@
-http://mbed.org/users/mbed_official/code/mbed-rtos/#01158bb7600c
+http://mbed.org/users/mbed_official/code/mbed-rtos/#80173c64d05d
diff -r aa8ea13b6a07 -r 39180377e223 mbed.bld
--- a/mbed.bld	Fri Jul 13 16:13:14 2012 +0000
+++ b/mbed.bld	Fri Nov 23 11:03:57 2012 +0000
@@ -1,1 +1,1 @@
-http://mbed.org/users/mbed_official/code/mbed/builds/10b9abbe79a6
\ No newline at end of file
+http://mbed.org/users/mbed_official/code/mbed/builds/3d775a932e1d
\ No newline at end of file