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

Dependencies:   libmDot-mbed5

main.cpp

Committer:
jreiss
Date:
2019-03-09
Revision:
0:e2ec65e9536f

File content as of revision 0:e2ec65e9536f:

#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;
}