Basic example showing the Queue and MemoryPool API

Dependencies:   mbed-rtos mbed

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_queue

queue example

Files at this revision

API Documentation at this revision

Comitter:
mab5449
Date:
Fri Jan 13 19:49:53 2017 +0000
Parent:
5:2c73ccb2a032
Child:
7:72d8f12e161f
Commit message:
Updated to mbed 5

Changed in this revision

main.cpp Show annotated file Show diff for this revision Revisions of this file
mbed-os.lib Show annotated file Show diff for this revision Revisions of this file
mbed-rtos.lib Show diff for this revision Revisions of this file
mbed.bld Show diff for this revision Revisions of this file
--- a/main.cpp	Wed Jan 11 15:26:27 2017 +0000
+++ b/main.cpp	Fri Jan 13 19:49:53 2017 +0000
@@ -1,5 +1,4 @@
 #include "mbed.h"
-#include "rtos.h"
 
 typedef struct {
     float    voltage;   /* AD result of measured voltage */
@@ -9,6 +8,7 @@
 
 MemoryPool<message_t, 16> mpool;
 Queue<message_t, 16> queue;
+Thread thread;
 
 /* Send Thread */
 void send_thread (void) {
@@ -20,12 +20,11 @@
         message->current = (i * 0.1) * 11;
         message->counter = i;
         queue.put(message);
-        Thread::wait(1000);
+        wait(1);
     }
 }
 
 int main (void) {
-    Thread thread;
     thread.start(callback(send_thread));
     
     while (true) {
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbed-os.lib	Fri Jan 13 19:49:53 2017 +0000
@@ -0,0 +1,1 @@
+https://github.com/ARMmbed/mbed-os/#2885c1b41e63158cb6faf5f107cd821ae06ef26c
--- a/mbed-rtos.lib	Wed Jan 11 15:26:27 2017 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,1 +0,0 @@
-http://mbed.org/users/mbed_official/code/mbed-rtos/
\ No newline at end of file
--- a/mbed.bld	Wed Jan 11 15:26:27 2017 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,1 +0,0 @@
-http://mbed.org/users/mbed_official/code/mbed/builds/
\ No newline at end of file