A test program to show that nrf52 seems to not be able to export from the online compiler. An error occurs

Dependencies:   mbed

Files at this revision

API Documentation at this revision

Comitter:
andrewfelch
Date:
Tue Oct 04 22:19:54 2016 +0000
Commit message:
First commit - blinks LED on pin p17. Fails to export from online mbed compiler.

Changed in this revision

main.cpp Show annotated file Show diff for this revision Revisions of this file
mbed.bld Show annotated file Show diff for this revision Revisions of this file
diff -r 000000000000 -r b1c9240ca79d main.cpp
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Tue Oct 04 22:19:54 2016 +0000
@@ -0,0 +1,14 @@
+#include "mbed.h"
+
+DigitalOut myLED(p17);
+
+int main( void )
+{
+    while(1)
+    {
+        myLED = 1;
+        wait(0.5);
+        myLED = 0;
+        wait(0.5);
+    }
+}
\ No newline at end of file
diff -r 000000000000 -r b1c9240ca79d mbed.bld
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbed.bld	Tue Oct 04 22:19:54 2016 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/mbed_official/code/mbed/builds/25aea2a3f4e3
\ No newline at end of file