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

Files at this revision

API Documentation at this revision

Comitter:
Jenkins@KEILDM1.dc.multitech.prv
Date:
Wed May 01 09:18:46 2019 -0500
Parent:
66:baa0f3116f1d
Child:
68:5f787643e7d7
Commit message:
mdot-library revision 3.2.1 and mbed-os revision mbed-os-5.11.1

Changed in this revision

Fota/Fragmentation/FragmentationMath.h Show annotated file Show diff for this revision Revisions of this file
Fota/Fragmentation/FragmentationSession.h Show annotated file Show diff for this revision Revisions of this file
libmDot-ARMCC.ar Show annotated file Show diff for this revision Revisions of this file
libmDot-GCC_ARM.a Show annotated file Show diff for this revision Revisions of this file
--- a/Fota/Fragmentation/FragmentationMath.h	Tue Apr 23 08:51:10 2019 -0500
+++ b/Fota/Fragmentation/FragmentationMath.h	Wed May 01 09:18:46 2019 -0500
@@ -8,7 +8,7 @@
 
 #define FRAG_SESSION_ONGOING    0xffffffff
 #ifndef MAX_PARITY
-#define MAX_PARITY 400
+#define MAX_PARITY 300
 #endif
 class FragmentationMath
 {
@@ -30,7 +30,7 @@
     void StoreRowInFlash(uint8_t *rowData, int index);
     void XorLineData(uint8_t *dataL1, uint8_t *dataL2, int size);
     void XorLineBit(uint8_t *dataL1, uint8_t *dataL2, int size);
-    void XorRowWithMatrix(uint8_t* row, int matrix_row_num); 
+    void XorRowWithMatrix(uint8_t* row, int matrix_row_num);
     void FragmentationGetParityMatrixRow(int N, int M, uint8_t *matrixRow);
     void CondenseRow(uint8_t *row, int row_number, int start);
     void ExpandAndXorRow(uint8_t *row, int row_number);
@@ -38,7 +38,7 @@
     void CompleteRow(int row_num);
     void printMatrix();
 
-    uint8_t _frame_size; 
+    uint8_t _frame_size;
     uint16_t _frame_count;
     uint16_t _max_parity;
     uint16_t numFramesMissing;
--- a/Fota/Fragmentation/FragmentationSession.h	Tue Apr 23 08:51:10 2019 -0500
+++ b/Fota/Fragmentation/FragmentationSession.h	Wed May 01 09:18:46 2019 -0500
@@ -7,8 +7,8 @@
 #include "mDot.h"
 #include "WriteFile.h"
 
-#define MAX_PARITY 400
-#define FRAG_OFFSET 3 
+#define MAX_PARITY 300
+#define FRAG_OFFSET 3
 #define MULTICAST_SESSIONS 3
 
 class FragmentationSession {
@@ -63,7 +63,7 @@
         void reset(uint16_t num);
         void upgradeFile(uint8_t fragIndex);
         bool process_frame(uint8_t fragIndex,uint16_t index, uint8_t buffer[], size_t size);
-        
+
         mDot* _dot;
         WriteFile* _fh;
         fragGroup fg[MULTICAST_SESSIONS];
Binary file libmDot-ARMCC.ar has changed
Binary file libmDot-GCC_ARM.a has changed