Test of importing mbed-os 5.7.7 and libmDot-mbed5 3.1.0
Revision 0:e2ec65e9536f, committed 2019-03-09
- Comitter:
- jreiss
- Date:
- Sat Mar 09 19:00:03 2019 +0000
- Commit message:
- Initial commit;
Changed in this revision
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libmDot-mbed5.lib Sat Mar 09 19:00:03 2019 +0000 @@ -0,0 +1,1 @@ +https://os.mbed.com/teams/MultiTech/code/libmDot-mbed5/#64982192a2af
--- /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
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mbed-os.lib Sat Mar 09 19:00:03 2019 +0000 @@ -0,0 +1,1 @@ +https://github.com/ARMmbed/mbed-os/#16bac101a6b7b4724023dcf86ece1548e3a23cbf
Jason Reiss