Bleeding edge development version of the mDot library. This version of the library is not guaranteed to be stable or well tested and should not be used in production or deployment scenarios.
Dependents: mDot_LoRa_CLASS_C_P2P
Fork of libmDot-dev by
Warning
Using libmDot 2.0.3 and above with an existing application may require a change in the MacEvent handler!
Compile applications with mbed v121 and mbed-rtos v116 libraries.
In AT Command Firmware remove line 803.
CommandTerminal/CommandTerminal.cpp
delete[] info->RxBuffer;
Likewise, if your application is handling events from the library asynchronously.
Diff: README.txt
- Revision:
- 3:5e805b567124
- Parent:
- 2:6385bf37bfe7
- Child:
- 13:5ac2300dc06a
--- a/README.txt Wed Jun 24 17:16:30 2015 -0500 +++ b/README.txt Wed Jun 24 17:21:14 2015 -0500 @@ -68,8 +68,9 @@ // attempt to join the network printf("joining network\r\n"); - if ((ret = dot->joinNetwork()) != mDot::MDOT_OK) { + while ((ret = dot->joinNetwork()) != mDot::MDOT_OK) { log_error(dot, "failed to join network", ret); + wait(2); } // format data for sending to the gateway