Stable version of the xDot library for mbed 5. This version of the library is suitable for deployment scenarios.

Dependents:   Dot-Examples XDOT-Devicewise Dot-Examples-delujoc Dot-Examples_receive ... more

Fork of libxDot-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

examples/src/fota_example.cpp

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

examples/inc/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
    }

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 Sep 22 16:29:07 2016 -0500
Revision:
2:4569491293d7
Parent:
0:d8b7d49a734c
update from git revision 2.0.12

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Jenkins@KEILDM1.dc.multitech.prv 2:4569491293d7 1 #ifndef UTILS_H
Jenkins@KEILDM1.dc.multitech.prv 2:4569491293d7 2 #define UTILS_H
Jenkins@KEILDM1.dc.multitech.prv 2:4569491293d7 3
Jenkins@KEILDM1.dc.multitech.prv 2:4569491293d7 4 #include <string>
Jenkins@KEILDM1.dc.multitech.prv 2:4569491293d7 5
Jenkins@KEILDM1.dc.multitech.prv 2:4569491293d7 6 //Defines a max function that can be used.
Jenkins@KEILDM1.dc.multitech.prv 2:4569491293d7 7 inline int mts_max(int a, int b) { return a > b ? a : b; }
Jenkins@KEILDM1.dc.multitech.prv 2:4569491293d7 8
Jenkins@KEILDM1.dc.multitech.prv 2:4569491293d7 9 //Defines a min function that can be used.
Jenkins@KEILDM1.dc.multitech.prv 2:4569491293d7 10 inline int mts_min(int a, int b) { return a < b ? a : b; }
Jenkins@KEILDM1.dc.multitech.prv 2:4569491293d7 11
Jenkins@KEILDM1.dc.multitech.prv 2:4569491293d7 12 ///An enumeration for relational operators
Jenkins@KEILDM1.dc.multitech.prv 2:4569491293d7 13 enum RelationalOperator {
Jenkins@KEILDM1.dc.multitech.prv 2:4569491293d7 14 GREATER, LESS, EQUAL, GREATER_EQUAL, LESS_EQUAL
Jenkins@KEILDM1.dc.multitech.prv 2:4569491293d7 15 };
Jenkins@KEILDM1.dc.multitech.prv 2:4569491293d7 16
Jenkins@KEILDM1.dc.multitech.prv 2:4569491293d7 17 /** A static method for getting a string representation for the RelationalOperator
Jenkins@KEILDM1.dc.multitech.prv 2:4569491293d7 18 * enumeration.
Jenkins@KEILDM1.dc.multitech.prv 2:4569491293d7 19 *
Jenkins@KEILDM1.dc.multitech.prv 2:4569491293d7 20 * @param relationalOperator a RelationalOperator enumeration.
Jenkins@KEILDM1.dc.multitech.prv 2:4569491293d7 21 * @returns the enumeration name as a string.
Jenkins@KEILDM1.dc.multitech.prv 2:4569491293d7 22 */
Jenkins@KEILDM1.dc.multitech.prv 2:4569491293d7 23 static inline std::string getRelationalOperatorNames(RelationalOperator relationalOperator)
Jenkins@KEILDM1.dc.multitech.prv 2:4569491293d7 24 {
Jenkins@KEILDM1.dc.multitech.prv 2:4569491293d7 25 switch(relationalOperator) {
Jenkins@KEILDM1.dc.multitech.prv 2:4569491293d7 26 case GREATER:
Jenkins@KEILDM1.dc.multitech.prv 2:4569491293d7 27 return "GREATER";
Jenkins@KEILDM1.dc.multitech.prv 2:4569491293d7 28 case LESS:
Jenkins@KEILDM1.dc.multitech.prv 2:4569491293d7 29 return "LESS";
Jenkins@KEILDM1.dc.multitech.prv 2:4569491293d7 30 case EQUAL:
Jenkins@KEILDM1.dc.multitech.prv 2:4569491293d7 31 return "EQUAL";
Jenkins@KEILDM1.dc.multitech.prv 2:4569491293d7 32 case GREATER_EQUAL:
Jenkins@KEILDM1.dc.multitech.prv 2:4569491293d7 33 return "GREATER_EQUAL";
Jenkins@KEILDM1.dc.multitech.prv 2:4569491293d7 34 case LESS_EQUAL:
Jenkins@KEILDM1.dc.multitech.prv 2:4569491293d7 35 return "LESS_EQUAL";
Jenkins@KEILDM1.dc.multitech.prv 2:4569491293d7 36 default:
Jenkins@KEILDM1.dc.multitech.prv 2:4569491293d7 37 return "UNKNOWN ENUM";
Jenkins@KEILDM1.dc.multitech.prv 2:4569491293d7 38 }
Jenkins@KEILDM1.dc.multitech.prv 2:4569491293d7 39 }
Jenkins@KEILDM1.dc.multitech.prv 2:4569491293d7 40
Jenkins@KEILDM1.dc.multitech.prv 2:4569491293d7 41 #endif