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: SoftSerial MAX14690 Buffer
Fork of rtos_threading_with_callback by
Diff: main.cpp
- Revision:
- 0:d4b2a035ffe3
- Child:
- 2:bf699e054b34
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/main.cpp Thu Jan 12 23:54:51 2017 +0000 @@ -0,0 +1,21 @@ +#include "mbed.h" + +Thread thread; +DigitalOut led1(LED1); +volatile bool running = true; + +// Blink function toggles the led in a long running loop +void blink(DigitalOut *led) { + while (running) { + *led = !*led; + wait(1); + } +} + +// Spawns a thread to run blink for 5 seconds +int main() { + thread.start(callback(blink, &led1)); + wait(5); + running = false; + thread.join(); +} \ No newline at end of file