Firmware for the on-board nRF52832 on the Q10.

Dependencies:   mbed

Revision:
0:8550a65f4fdf
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Sat Jun 10 05:34:46 2017 +0000
@@ -0,0 +1,10 @@
+#include "mbed.h"
+ 
+Serial pc(USBTX, USBRX); // tx, rx
+ 
+int main() {
+    while(1) {
+        pc.printf("Hello World!\n");
+        wait(1);
+    }
+}
\ No newline at end of file