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:4e4ec828f10a, committed 2014-04-06
- Comitter:
- Heidi070221
- Date:
- Sun Apr 06 00:03:12 2014 +0000
- Parent:
- 0:499187cdf585
- Commit message:
- More user friendly variable names.:)
Changed in this revision
| main.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/main.cpp Sat Apr 05 23:56:30 2014 +0000
+++ b/main.cpp Sun Apr 06 00:03:12 2014 +0000
@@ -19,9 +19,9 @@
}
int main() {
- int niz[4] = {0,1,2,3};
+ int arr[4] = {0,1,2,3};
for (int i = 0; i<4; i++) {
myled[i] = 1;
- thread_led[i] = new Thread(start_blink, &niz[i]);
+ thread_led[i] = new Thread(start_blink, &arr[i]);
}
}