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

Revisions of libmDot-ARMCC.ar

Revision Date Message Actions
67:a9d4d7cdeca1 2019-05-01 mdot-library revision 3.2.1 and mbed-os revision mbed-os-5.11.1 File  Diff  Annotate
66:baa0f3116f1d 2019-04-23 mdot-library revision 3.2.0 and mbed-os revision mbed-os-5.11.1 File  Diff  Annotate
64:64982192a2af 2018-08-23 mdot-library revision 3.1.0 and mbed-os revision mbed-os-5.7.7 File  Diff  Annotate
62:255e2ddc294e 2017-07-27 mdot-library revision 3.0.0 and mbed-os revision mbed-os-5.4.7 File  Diff  Annotate
61:58ed1e136af5 2017-07-27 mdot-library revision 3.0.0 and mbed-os revision mbed-os-5.4.7 File  Diff  Annotate
60:7985b4783af9 2017-07-27 mdot-library revision 3.0.0 and mbed-os revision mbed-os-5.4.7 File  Diff  Annotate
59:0c4b59488f41 2017-05-04 mdot-library revision 2.0.17-1 and mbed-os revision mbed-os-5.4.2 File  Diff  Annotate
58:b0703fda213b 2017-04-05 mdot-library revision 2.0.17 and mbed-os revision mbed-os-5.4.2 File  Diff  Annotate
57:610f9e955516 2016-10-19 mdot-library revision 2.0.15 and mbed-os revision mbed-os-5.1.5 File  Diff  Annotate
56:4ccb309b04b7 2016-10-19 mdot-library revision 2.0.15 and mbed-os revision mbed-os-5.1.5 File  Diff  Annotate
55:b7ce38bdf24b 2016-10-18 update from git revision 2.0.15 File  Diff  Annotate
54:7caf0cf9e6c5 2016-09-22 update from git revision 2.0.12 File  Diff  Annotate
52:6bd190195be2 2016-09-21 update from git revision 2.0.12 File  Diff  Annotate
51:0faaa26360b4 2016-09-21 update from git revision 2.0.12 File  Diff  Annotate
50:e0a9c9654ef9 2016-09-21 update from git revision 2.0.11-5-g01a4023 File  Diff  Annotate
49:3095495dad54 2016-09-20 update from git revision 2.0.11-4-g888b80a File  Diff  Annotate
48:da8557ad9b76 2016-09-19 update from git revision 2.0.11-1-ga4188af File  Diff  Annotate
47:3a89adcc2c36 2016-09-16 update from git revision 2.0.10-5-g90c25e8 File  Diff  Annotate
46:704864701b14 2016-09-16 update from git revision 2.0.10-5-g90c25e8 File  Diff  Annotate
45:e5e992691082 2016-09-16 update from git revision 2.0.10-5-g90c25e8 File  Diff  Annotate
44:d1279cde6d68 2016-09-16 update from git revision 2.0.10-5-g90c25e8 File  Diff  Annotate
43:ba29a595814e 2016-09-16 update from git revision 2.0.10-5-g90c25e8 File  Diff  Annotate
42:a4226c85b544 2016-09-16 update from git revision 2.0.10-1-gc02f6fc File  Diff  Annotate
41:4748544fa30f 2016-09-16 rename library archive File  Diff  Annotate | base