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.
Diff: main.cpp
- Revision:
- 1:d78c639f6b65
- Parent:
- 0:5ee0fb58a1c8
- Child:
- 3:13a75fd3a983
--- a/main.cpp Sat Mar 16 20:55:36 2019 -0500
+++ b/main.cpp Fri Mar 22 09:26:28 2019 -0500
@@ -11,6 +11,9 @@
int main()
{
- led1 = !led1;
- wait_ms( WAIT_TIME );
+ while (true)
+ {
+ led1 = !led1;
+ wait_ms(WAIT_TIME);
+ }
}