Firmware for the on-board nRF52832 on the Q10.

Dependencies:   mbed

Committer:
Aqua_IoT
Date:
Sat Jun 10 05:34:46 2017 +0000
Revision:
0:8550a65f4fdf
SK1 init

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Aqua_IoT 0:8550a65f4fdf 1 #include "mbed.h"
Aqua_IoT 0:8550a65f4fdf 2
Aqua_IoT 0:8550a65f4fdf 3 Serial pc(USBTX, USBRX); // tx, rx
Aqua_IoT 0:8550a65f4fdf 4
Aqua_IoT 0:8550a65f4fdf 5 int main() {
Aqua_IoT 0:8550a65f4fdf 6 while(1) {
Aqua_IoT 0:8550a65f4fdf 7 pc.printf("Hello World!\n");
Aqua_IoT 0:8550a65f4fdf 8 wait(1);
Aqua_IoT 0:8550a65f4fdf 9 }
Aqua_IoT 0:8550a65f4fdf 10 }