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:847e4f0d71f5, committed 2016-09-20
- Comitter:
- megrootens
- Date:
- Tue Sep 20 08:42:57 2016 +0000
- Parent:
- 0:66b7dc06a323
- Commit message:
- missing "&" in attaching Ticker
Changed in this revision
| main.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/main.cpp Fri Sep 16 15:26:34 2016 +0000
+++ b/main.cpp Tue Sep 20 08:42:57 2016 +0000
@@ -52,7 +52,7 @@
// Create ticker and attach LED toggle function
Ticker tick_toggle_led;
- tick_toggle_led.attach(ToggleLed,kTimeLedToggle);
+ tick_toggle_led.attach(&ToggleLed,kTimeLedToggle);
while (true);
}