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: MacEvents.h
- Revision:
- 37:85ab51620cca
- Parent:
- 26:17479e0039f6
--- a/MacEvents.h Fri Sep 09 16:36:49 2016 -0500 +++ b/MacEvents.h Tue Sep 13 09:27:54 2016 -0500 @@ -39,7 +39,7 @@ virtual void RxTimeout(uint8_t slot) = 0; virtual void RxError(uint8_t slot) = 0; - virtual void MissedAck(uint8_t retries); + virtual void MissedAck(uint8_t retries) = 0; virtual uint8_t MeasureBattery() = 0;