Basic example showing the Mail 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_mail

mail example

Files at this revision

API Documentation at this revision

Comitter:
mab5449
Date:
Fri Jan 13 19:48:55 2017 +0000
Parent:
4:d9d4837009f6
Child:
6:46af1199bf9b
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:32:17 2017 +0000
+++ b/main.cpp	Fri Jan 13 19:48:55 2017 +0000
@@ -1,5 +1,4 @@
 #include "mbed.h"
-#include "rtos.h"
 
 /* Mail */
 typedef struct {
@@ -9,6 +8,7 @@
 } mail_t;
 
 Mail<mail_t, 16> mail_box;
+Thread thread;
 
 void send_thread (void) {
     uint32_t i = 0;
@@ -19,12 +19,11 @@
         mail->current = (i * 0.1) * 11;
         mail->counter = i;
         mail_box.put(mail);
-        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:48:55 2017 +0000
@@ -0,0 +1,1 @@
+https://github.com/ARMmbed/mbed-os/#2885c1b41e63158cb6faf5f107cd821ae06ef26c
--- a/mbed-rtos.lib	Wed Jan 11 15:32:17 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:32:17 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