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.
Revision 1:9e60464b3c72, committed 2016-12-26
- Comitter:
- wbqaston
- Date:
- Mon Dec 26 07:33:51 2016 +0000
- Parent:
- 0:7b4fe69d1af5
- Commit message:
- fdgvd
Changed in this revision
| main.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/main.cpp Fri Dec 23 05:58:48 2016 +0000
+++ b/main.cpp Mon Dec 26 07:33:51 2016 +0000
@@ -2,12 +2,11 @@
DigitalOut led1(LED1);
-// main() runs in its own thread in the OS
-// (note the calls to Thread::wait below for delays)
+// main() runs in its own thread in THE OS
+// (note THE calls to Thread::wait below for delays)
int main() {
while (true) {
led1 = !led1;
Thread::wait(500);
}
}
-