Hello World For FRDM-KL25Z

Dependencies:   mbed

Fork of HelloWorldFRDM-KL25ZPublic by Mike Shaffer

Files at this revision

API Documentation at this revision

Comitter:
MountainKing
Date:
Thu Dec 12 01:30:21 2013 +0000
Parent:
0:4364328db887
Commit message:
Add the serial code, but with the fireware from mbed for KL25Z, the computer could not find CDC

Changed in this revision

main.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/main.cpp	Thu Apr 25 00:26:07 2013 +0000
+++ b/main.cpp	Thu Dec 12 01:30:21 2013 +0000
@@ -4,6 +4,7 @@
 PwmOut r (LED_RED);
 PwmOut g (LED_GREEN);
 PwmOut b (LED_BLUE);
+Serial pc(USBTX, USBRX);
  
 int main() {
     r.period(0.001);
@@ -17,6 +18,7 @@
             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);
             wait (0.0025);
+            pc.printf("Hello World");
         }
     }
 }
\ No newline at end of file