Stable version of the mDot library for mbed 5. This version of the library is suitable for deployment scenarios. See lastest commit message for version of mbed-os library that has been tested against.

Dependents:   mdot_two_way unh-hackathon-example unh-hackathon-example-raw TelitSensorToCloud ... more

Fork of libmDot-dev-mbed5-deprecated by MultiTech

The Dot library provides a LoRaWan certified stack for LoRa communication using MultiTech mDot and xDot devices. The stack is compatible with mbed 5.

The name of the repository can be used to determine which device the stack was compiled for and if it's a development or production-ready build:

A changelog for the Dot library can be found here.

The Dot library version and the version of mbed-os it was compiled against can both be found in the commit message for that revision of the Dot library. Building your application with the same version of mbed-os as what was used to build the Dot library is highly recommended!

The Dot-Examples repository demonstrates how to use the Dot library in a custom application.

The mDot and xDot platform pages have lots of platform specific information and document potential issues, gotchas, etc, and provide instructions for getting started with development. Please take a look at the platform page before starting development as they should answer many questions you will have.

FOTA

Full FOTA support is only available with mDot, xDot does not have the required external flash. xDot can use the FOTA example to dynamically join a multicast session only. After joining the multicast session the received Fragmentation packets could be handed to a host MCU for processing and at completion the firmware can be loaded into the xDot using the bootloader and y-modem. See xDot Developer Guide.

  • Add the following code to allow Fota to use the Dot instance

main.cpp

    // Initialize FOTA singleton
    Fota::getInstance(dot);
  • Add fragmentation handling the the PacketRx event

RadioEvent.h

    virtual void PacketRx(uint8_t port, uint8_t *payload, uint16_t size, int16_t rssi, int8_t snr, lora::DownlinkControl ctrl, uint8_t slot, uint8_t retries, uint32_t address, bool dupRx) {
        mDotEvent::PacketRx(port, payload, size, rssi, snr, ctrl, slot, retries, address, dupRx);

#if ACTIVE_EXAMPLE == FOTA_EXAMPLE
        if(port == 200 || port == 201 || port == 202) {
            Fota::getInstance()->processCmd(payload, port, size);
        }
#endif
    }

A definition is needed to enable Fragmentation support on mDot and save fragments to flash. This should not be defined for xDot and will result in a compiler error.

mbed_app.json

{
    "macros": [
        "FOTA=1"
    ]
}

The FOTA implementation has a few differences from the LoRaWAN Protocol

  • Fragmentation Indexing starts at 0
  • McKEKey is 00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00
  • Start Time is a count-down in seconds to start of session

History

Remove old ARMCC archive, only ARMC6 is available. default tip

2020-03-25, by jreiss [Wed, 25 Mar 2020 17:06:41 +0000] rev 74

Remove old ARMCC archive, only ARMC6 is available.


mdot-library revision 3.3.5 and mbed-os revision mbed-os-5.15.1

2020-03-13, by Jenkins@KEILDM1.dc.multitech.prv [Fri, 13 Mar 2020 08:22:30 -0500] rev 73

mdot-library revision 3.3.5 and mbed-os revision mbed-os-5.15.1


mdot-library revision 3.3.5 and mbed-os revision mbed-os-5.13.4

2020-02-17, by Jenkins@KEILDM1.dc.multitech.prv [Mon, 17 Feb 2020 14:43:04 -0600] rev 72

mdot-library revision 3.3.5 and mbed-os revision mbed-os-5.13.4


mdot-library revision 3.2.5 and mbed-os revision mbed-os-5.13.4

2019-11-08, by Jenkins@KEILDM1.dc.multitech.prv [Fri, 08 Nov 2019 09:34:58 -0600] rev 71

mdot-library revision 3.2.5 and mbed-os revision mbed-os-5.13.4


mdot-library revision 3.2.5 and mbed-os revision mbed-os-5.13.4

2019-11-08, by Jenkins@KEILDM1.dc.multitech.prv [Fri, 08 Nov 2019 09:29:29 -0600] rev 70

mdot-library revision 3.2.5 and mbed-os revision mbed-os-5.13.4


mdot-library revision 3.2.1 and mbed-os revision mbed-os-5.13.4

2019-08-29, by Jenkins@KEILDM1.dc.multitech.prv [Thu, 29 Aug 2019 12:21:51 -0500] rev 69

mdot-library revision 3.2.1 and mbed-os revision mbed-os-5.13.4


mdot-library revision 3.2.2-19-g285e497 and mbed-os revision mbed-os-5.13.4

2019-08-29, by Jenkins@KEILDM1.dc.multitech.prv [Thu, 29 Aug 2019 08:32:27 -0500] rev 68

mdot-library revision 3.2.2-19-g285e497 and mbed-os revision mbed-os-5.13.4


mdot-library revision 3.2.1 and mbed-os revision mbed-os-5.11.1

2019-05-01, by Jenkins@KEILDM1.dc.multitech.prv [Wed, 01 May 2019 09:18:46 -0500] rev 67

mdot-library revision 3.2.1 and mbed-os revision mbed-os-5.11.1


mdot-library revision 3.2.0 and mbed-os revision mbed-os-5.11.1

2019-04-23, by Jenkins@KEILDM1.dc.multitech.prv [Tue, 23 Apr 2019 08:51:10 -0500] rev 66

mdot-library revision 3.2.0 and mbed-os revision mbed-os-5.11.1


mdot-library revision 3.2.0 and mbed-os revision mbed-os-5.11.1

2019-04-18, by Jenkins@KEILDM1.dc.multitech.prv [Thu, 18 Apr 2019 14:55:19 -0500] rev 65

mdot-library revision 3.2.0 and mbed-os revision mbed-os-5.11.1