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
Committer:
Jenkins@KEILDM1.dc.multitech.prv
Date:
Thu Aug 29 12:21:51 2019 -0500
Revision:
69:e22889c7eaa9
Parent:
68:5f787643e7d7
Child:
70:0c5b5b02d17b
mdot-library revision 3.2.1 and mbed-os revision mbed-os-5.13.4

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Jenkins@KEILDM1.dc.multitech.prv 66:baa0f3116f1d 1 #ifndef MULTICASTGROUP_H
Jenkins@KEILDM1.dc.multitech.prv 66:baa0f3116f1d 2 #define MULTICASTGROUP_H
Jenkins@KEILDM1.dc.multitech.prv 66:baa0f3116f1d 3 #include "mDot.h"
Jenkins@KEILDM1.dc.multitech.prv 66:baa0f3116f1d 4 #include "mbed.h"
Jenkins@KEILDM1.dc.multitech.prv 66:baa0f3116f1d 5 #define GPS_EPOCH 315986400
Jenkins@KEILDM1.dc.multitech.prv 66:baa0f3116f1d 6 #define MULTICAST_SESSIONS 3
Jenkins@KEILDM1.dc.multitech.prv 66:baa0f3116f1d 7
Jenkins@KEILDM1.dc.multitech.prv 66:baa0f3116f1d 8 class MulticastGroup {
Jenkins@KEILDM1.dc.multitech.prv 66:baa0f3116f1d 9 public:
Jenkins@KEILDM1.dc.multitech.prv 66:baa0f3116f1d 10 MulticastGroup(mDot* dot, std::vector<uint8_t>* ret, bool* filled);
Jenkins@KEILDM1.dc.multitech.prv 66:baa0f3116f1d 11 ~MulticastGroup();
Jenkins@KEILDM1.dc.multitech.prv 66:baa0f3116f1d 12 void reset();
Jenkins@KEILDM1.dc.multitech.prv 66:baa0f3116f1d 13 //void newTime();
Jenkins@KEILDM1.dc.multitech.prv 66:baa0f3116f1d 14 void processCmd(uint8_t* payload, uint8_t size);
Jenkins@KEILDM1.dc.multitech.prv 66:baa0f3116f1d 15 int32_t timeToStart();
Jenkins@KEILDM1.dc.multitech.prv 66:baa0f3116f1d 16 void fixEventQueue();
Jenkins@KEILDM1.dc.multitech.prv 66:baa0f3116f1d 17
Jenkins@KEILDM1.dc.multitech.prv 66:baa0f3116f1d 18 private:
Jenkins@KEILDM1.dc.multitech.prv 66:baa0f3116f1d 19 enum McGroup {
Jenkins@KEILDM1.dc.multitech.prv 66:baa0f3116f1d 20 PACKAGE_VERSION_MC,
Jenkins@KEILDM1.dc.multitech.prv 66:baa0f3116f1d 21 STATUS,
Jenkins@KEILDM1.dc.multitech.prv 66:baa0f3116f1d 22 SETUP,
Jenkins@KEILDM1.dc.multitech.prv 66:baa0f3116f1d 23 DELETE,
Jenkins@KEILDM1.dc.multitech.prv 66:baa0f3116f1d 24 CLASS_C_SESSION,
Jenkins@KEILDM1.dc.multitech.prv 66:baa0f3116f1d 25 DATA_BLOCK_AUTH
Jenkins@KEILDM1.dc.multitech.prv 66:baa0f3116f1d 26 };
Jenkins@KEILDM1.dc.multitech.prv 66:baa0f3116f1d 27
Jenkins@KEILDM1.dc.multitech.prv 66:baa0f3116f1d 28 typedef struct {
Jenkins@KEILDM1.dc.multitech.prv 66:baa0f3116f1d 29 bool valid;
Jenkins@KEILDM1.dc.multitech.prv 66:baa0f3116f1d 30 uint8_t dr;
Jenkins@KEILDM1.dc.multitech.prv 66:baa0f3116f1d 31 uint8_t fragGroup;
Jenkins@KEILDM1.dc.multitech.prv 66:baa0f3116f1d 32 uint16_t timeout;
Jenkins@KEILDM1.dc.multitech.prv 66:baa0f3116f1d 33 uint32_t tme;
Jenkins@KEILDM1.dc.multitech.prv 66:baa0f3116f1d 34 uint32_t freq;
Jenkins@KEILDM1.dc.multitech.prv 66:baa0f3116f1d 35 uint32_t addr;
Jenkins@KEILDM1.dc.multitech.prv 66:baa0f3116f1d 36 uint32_t max_frame_count;
Jenkins@KEILDM1.dc.multitech.prv 66:baa0f3116f1d 37 int32_t timetostart;
Jenkins@KEILDM1.dc.multitech.prv 66:baa0f3116f1d 38 int32_t class_c_end;
Jenkins@KEILDM1.dc.multitech.prv 66:baa0f3116f1d 39 int32_t class_c_start;
Jenkins@KEILDM1.dc.multitech.prv 66:baa0f3116f1d 40 time_t time_setup;
Jenkins@KEILDM1.dc.multitech.prv 66:baa0f3116f1d 41 } mcgroup;
Jenkins@KEILDM1.dc.multitech.prv 69:e22889c7eaa9 42
Jenkins@KEILDM1.dc.multitech.prv 66:baa0f3116f1d 43 bool* _filled;
Jenkins@KEILDM1.dc.multitech.prv 66:baa0f3116f1d 44 uint8_t _groupId;
Jenkins@KEILDM1.dc.multitech.prv 66:baa0f3116f1d 45 uint8_t _ans;
Jenkins@KEILDM1.dc.multitech.prv 66:baa0f3116f1d 46 uint8_t _delay;
Jenkins@KEILDM1.dc.multitech.prv 66:baa0f3116f1d 47 uint8_t _token;
Jenkins@KEILDM1.dc.multitech.prv 66:baa0f3116f1d 48 uint8_t _dr;
Jenkins@KEILDM1.dc.multitech.prv 66:baa0f3116f1d 49 uint32_t _freq;
Jenkins@KEILDM1.dc.multitech.prv 66:baa0f3116f1d 50 uint32_t _frame_count;
Jenkins@KEILDM1.dc.multitech.prv 66:baa0f3116f1d 51 time_t _now;
Jenkins@KEILDM1.dc.multitech.prv 69:e22889c7eaa9 52
Jenkins@KEILDM1.dc.multitech.prv 69:e22889c7eaa9 53 mDot* _dot;
Jenkins@KEILDM1.dc.multitech.prv 66:baa0f3116f1d 54 Thread _event_thread;
Jenkins@KEILDM1.dc.multitech.prv 66:baa0f3116f1d 55 EventQueue _switch_class_queue;
Jenkins@KEILDM1.dc.multitech.prv 66:baa0f3116f1d 56 mcgroup _mcGroup[MULTICAST_SESSIONS];
Jenkins@KEILDM1.dc.multitech.prv 66:baa0f3116f1d 57 std::vector<uint8_t>* _ret;
Jenkins@KEILDM1.dc.multitech.prv 66:baa0f3116f1d 58 std::string _org_class;
Jenkins@KEILDM1.dc.multitech.prv 66:baa0f3116f1d 59
Jenkins@KEILDM1.dc.multitech.prv 66:baa0f3116f1d 60 void setupClassC(uint8_t id);
Jenkins@KEILDM1.dc.multitech.prv 66:baa0f3116f1d 61 static void switchClass(uint32_t freq, uint8_t dr, std::string newClass);
Jenkins@KEILDM1.dc.multitech.prv 66:baa0f3116f1d 62 };
Jenkins@KEILDM1.dc.multitech.prv 66:baa0f3116f1d 63 #endif