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:
Tue Dec 17 06:57:48 2019 -0600
Revision:
24:f0c33ca35c77
Parent:
20:bc12c888e7dc
xdot-library revision 3.2.5 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 20:bc12c888e7dc 1 /**********************************************************************
Jenkins@KEILDM1.dc.multitech.prv 20:bc12c888e7dc 2 * COPYRIGHT 2018 MULTI-TECH SYSTEMS, INC.
Jenkins@KEILDM1.dc.multitech.prv 20:bc12c888e7dc 3 *
Jenkins@KEILDM1.dc.multitech.prv 20:bc12c888e7dc 4 * ALL RIGHTS RESERVED BY AND FOR THE EXCLUSIVE BENEFIT OF
Jenkins@KEILDM1.dc.multitech.prv 20:bc12c888e7dc 5 * MULTI-TECH SYSTEMS, INC.
Jenkins@KEILDM1.dc.multitech.prv 20:bc12c888e7dc 6 *
Jenkins@KEILDM1.dc.multitech.prv 20:bc12c888e7dc 7 * MULTI-TECH SYSTEMS, INC. - CONFIDENTIAL AND PROPRIETARY
Jenkins@KEILDM1.dc.multitech.prv 20:bc12c888e7dc 8 * INFORMATION AND/OR TRADE SECRET.
Jenkins@KEILDM1.dc.multitech.prv 20:bc12c888e7dc 9 *
Jenkins@KEILDM1.dc.multitech.prv 20:bc12c888e7dc 10 * NOTICE: ALL CODE, PROGRAM, INFORMATION, SCRIPT, INSTRUCTION,
Jenkins@KEILDM1.dc.multitech.prv 20:bc12c888e7dc 11 * DATA, AND COMMENT HEREIN IS AND SHALL REMAIN THE CONFIDENTIAL
Jenkins@KEILDM1.dc.multitech.prv 20:bc12c888e7dc 12 * INFORMATION AND PROPERTY OF MULTI-TECH SYSTEMS, INC.
Jenkins@KEILDM1.dc.multitech.prv 20:bc12c888e7dc 13 * USE AND DISCLOSURE THEREOF, EXCEPT AS STRICTLY AUTHORIZED IN A
Jenkins@KEILDM1.dc.multitech.prv 20:bc12c888e7dc 14 * WRITTEN AGREEMENT SIGNED BY MULTI-TECH SYSTEMS, INC. IS PROHIBITED.
Jenkins@KEILDM1.dc.multitech.prv 20:bc12c888e7dc 15 *
Jenkins@KEILDM1.dc.multitech.prv 20:bc12c888e7dc 16 ***********************************************************************/
Jenkins@KEILDM1.dc.multitech.prv 20:bc12c888e7dc 17
Jenkins@KEILDM1.dc.multitech.prv 11:be2a6466d680 18 #include "ChannelPlan_AS923.h"
Jenkins@KEILDM1.dc.multitech.prv 11:be2a6466d680 19 #include "ChannelPlan_AU915.h"
Jenkins@KEILDM1.dc.multitech.prv 11:be2a6466d680 20 #include "ChannelPlan_US915.h"
Jenkins@KEILDM1.dc.multitech.prv 11:be2a6466d680 21 #include "ChannelPlan_EU868.h"
Jenkins@KEILDM1.dc.multitech.prv 11:be2a6466d680 22 #include "ChannelPlan_KR920.h"
Jenkins@KEILDM1.dc.multitech.prv 11:be2a6466d680 23 #include "ChannelPlan_IN865.h"
Jenkins@KEILDM1.dc.multitech.prv 11:be2a6466d680 24 #include "ChannelPlan_AS923_Japan.h"
Jenkins@KEILDM1.dc.multitech.prv 16:4a382fe8f51b 25 #include "ChannelPlan_RU864.h"
Jenkins@KEILDM1.dc.multitech.prv 11:be2a6466d680 26
Jenkins@KEILDM1.dc.multitech.prv 11:be2a6466d680 27
Jenkins@KEILDM1.dc.multitech.prv 11:be2a6466d680 28 #define CP_AS923 1
Jenkins@KEILDM1.dc.multitech.prv 11:be2a6466d680 29 #define CP_AU915 2
Jenkins@KEILDM1.dc.multitech.prv 11:be2a6466d680 30 #define CP_US915 3
Jenkins@KEILDM1.dc.multitech.prv 11:be2a6466d680 31 #define CP_EU868 4
Jenkins@KEILDM1.dc.multitech.prv 11:be2a6466d680 32 #define CP_KR920 5
Jenkins@KEILDM1.dc.multitech.prv 11:be2a6466d680 33 #define CP_IN865 6
Jenkins@KEILDM1.dc.multitech.prv 11:be2a6466d680 34 #define CP_AS923_JAPAN 7
Jenkins@KEILDM1.dc.multitech.prv 16:4a382fe8f51b 35 #define CP_RU864 8