C027 Example: blinking LED

Dependencies:   C027-REVB mbed

Fork of C027_HelloWorld by u-blox

Files at this revision

API Documentation at this revision

Comitter:
dixter1
Date:
Sat Dec 14 01:27:06 2013 +0000
Parent:
5:41b123533b79
Commit message:
First Pass Hello World for Hardware Revision B, with bootup changes.

Changed in this revision

C027-REVB.lib Show annotated file Show diff for this revision Revisions of this file
C027.lib Show diff for this revision Revisions of this file
main.cpp Show annotated file Show diff for this revision Revisions of this file
diff -r 41b123533b79 -r 16ceb51fc1fc C027-REVB.lib
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/C027-REVB.lib	Sat Dec 14 01:27:06 2013 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/dixter1/code/C027-REVB/#2ae219d82c0e
diff -r 41b123533b79 -r 16ceb51fc1fc C027.lib
--- a/C027.lib	Fri Dec 06 09:58:29 2013 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,1 +0,0 @@
-http://mbed.org/teams/ublox/code/C027/#e30f90b5447e
diff -r 41b123533b79 -r 16ceb51fc1fc main.cpp
--- a/main.cpp	Fri Dec 06 09:58:29 2013 +0000
+++ b/main.cpp	Sat Dec 14 01:27:06 2013 +0000
@@ -7,11 +7,14 @@
  #define LED A0
 #endif
 
-DigitalOut myled(LED); 
+DigitalOut myled(LED);
 
 int main() {
+
     while(1) {
+    
         myled = !myled;
+    
         wait(0.2);
     }
 }