EventQueue break_dispatch test

Fork of mbed-os-example-mbed5-blinky by mbed-os-examples

Files at this revision

API Documentation at this revision

Comitter:
mbed_official
Date:
Sun Mar 05 20:30:02 2017 +0000
Parent:
28:239239e33d92
Child:
30:f5b42453b3f9
Commit message:
Merge pull request #48 from janjongboom/patch-1

Remove the note about wait
.
Commit copied from https://github.com/ARMmbed/mbed-os-example-blinky

Changed in this revision

main.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/main.cpp	Tue Feb 28 13:30:04 2017 +0000
+++ b/main.cpp	Sun Mar 05 20:30:02 2017 +0000
@@ -3,7 +3,6 @@
 DigitalOut led1(LED1);
 
 // main() runs in its own thread in the OS
-// (note the calls to wait below for delays)
 int main() {
     while (true) {
         led1 = !led1;