Test of importing mbed-os 5.7.7 and libmDot-mbed5 3.1.0

Dependencies:   libmDot-mbed5

Revision:
0:e2ec65e9536f
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Sat Mar 09 19:00:03 2019 +0000
@@ -0,0 +1,17 @@
+#include "mbed.h"
+#include "mDot.h"
+#include "ChannelPlans.h"
+
+// main() runs in its own thread in the OS
+int main()
+{
+    lora::ChannelPlan* plan=new lora::ChannelPlan_EU868();
+    //assert(plan);
+
+    mDot* dot=mDot::getInstance(plan);
+    //assert(dot)
+    while (true) {
+
+    }
+    return 0;
+}
\ No newline at end of file