program to export new ublox drivers

Dependencies:   ublox-at-cellular-interface-ext ublox-cellular-base ublox-cellular-driver-gen

Revision:
0:96632a6f103a
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Thu Feb 08 23:50:49 2018 +0000
@@ -0,0 +1,12 @@
+#include "mbed.h"
+
+DigitalOut led1(LED1);
+
+// main() runs in its own thread in the OS
+int main() {
+    while (true) {
+        led1 = !led1;
+        wait(0.5);
+    }
+}
+