Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed mbed-rtos DHT TextLCD
Revision 5:6602f2907ac5, committed 2017-01-13
- 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
--- 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