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 2:03e5c29343d1, committed 2012-10-23
- Comitter:
- emilmont
- Date:
- Tue Oct 23 09:33:36 2012 +0000
- Parent:
- 1:eabc6f5b51d6
- Commit message:
- Update mbed library
Changed in this revision
| main.cpp | Show annotated file Show diff for this revision Revisions of this file |
| mbed-KL25Z.lib | Show annotated file Show diff for this revision Revisions of this file |
diff -r eabc6f5b51d6 -r 03e5c29343d1 main.cpp
--- a/main.cpp Fri Oct 12 13:49:40 2012 +0000
+++ b/main.cpp Tue Oct 23 09:33:36 2012 +0000
@@ -4,18 +4,17 @@
PwmOut g (LED_GREEN);
PwmOut b (LED_BLUE);
-int main()
-{
+int main() {
r.period(0.001);
g.period(0.001);
b.period(0.001);
- while(1) {
- for(float i = 0.0; i < 1.0 ; i += 0.001) {
+ while (true) {
+ for (float i = 0.0; i < 1.0 ; i += 0.001) {
float p = 3 * i;
r = 1.0 - ((p < 1.0) ? 1.0 - p : (p > 2.0) ? p - 2.0 : 0.0);
g = 1.0 - ((p < 1.0) ? p : (p > 2.0) ? 0.0 : 2.0 - p);
- b = 1.0 - ((p < 1.0) ? 0.0 : (p > 2.0) ? 3.0 - p : p - 1.0); ;
+ b = 1.0 - ((p < 1.0) ? 0.0 : (p > 2.0) ? 3.0 - p : p - 1.0);
wait (0.0025);
}
}
diff -r eabc6f5b51d6 -r 03e5c29343d1 mbed-KL25Z.lib --- a/mbed-KL25Z.lib Fri Oct 12 13:49:40 2012 +0000 +++ b/mbed-KL25Z.lib Tue Oct 23 09:33:36 2012 +0000 @@ -1,1 +1,1 @@ -http://mbed.org/users/emilmont/code/mbed-KL25Z/#2fd6de8f897c +http://mbed.org/users/emilmont/code/mbed-KL25Z/#73c5efe92a6c

