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.
Fork of OS-RPC_Serial by
Revision 66:0a43d8aeeb76, committed 2018-06-26
- Comitter:
- billcooke51
- Date:
- Tue Jun 26 17:52:09 2018 +0000
- Parent:
- 65:caf630d9c605
- Child:
- 67:f3ca708f5187
- Commit message:
- wait seems to be 10s of seconds
Changed in this revision
main.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/main.cpp Wed May 02 06:30:02 2018 +0100 +++ b/main.cpp Tue Jun 26 17:52:09 2018 +0000 @@ -6,7 +6,9 @@ int main() { while (true) { led1 = !led1; - wait(0.5); + wait(0.02); + led1 = !led1; + wait(0.02); } }