Bleeding edge development version of the mDot library for mbed 5. This version of the library is not guaranteed to be stable or well tested and should not be used in production or deployment scenarios.

Dependents:   mDot-IKS01A1 mDot-IKS01A1 mDot-Examples mDot-IKS01A1-Explora ... more

Fork of libmDot-dev-mbed2-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.

Dot Library Version 3 Updates

Dot Library versions 3.x.x require a channel plan to be injected into the stack. Channel plans are included with the 3.x.x Dot Library releases. The following code snippet demonstrates how to create a channel plan and inject it into the stack.

#include "mDot.h"
#include "channel_plans.h"

int main() {
    ChannelPlan* plan = new lora::ChannelPlan_US915();
    assert(plan);
    mDot* dot = mDot::getInstance(plan);
    assert(dot);

    // ...
}

Dot devices must not be deployed with software using a different channel plan than the Dot's default plan! This functionality is for development and testing only!

Multicast Sessions

Multicast sessions and packet rx events in library. When in Class C mode Multicast downlinks can be received. Recieved packets should be filtered on address, counter value will be maintained in the session or can be set explicitly depending on Application support to share Multicast Address, Keys and Counters.

mDot.h

        /**
         * Add a multicast session address and keys
         * Downlink counter is set to 0
         * Up to 3 MULTICAST_SESSIONS can be set
         */
        int32_t setMulticastSession(uint8_t index, uint32_t addr, const uint8_t* nsk, const uint8_t* dsk);
 
        /**
         * Set a multicast session counter
         * Up to 3 MULTICAST_SESSIONS can be set
         */
        int32_t setMulticastDownlinkCounter(uint8_t index, uint32_t count);

mDotEvent.h

The address field was added to PacketRx event.

        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);

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.

Revisions of mDot.h

Revision Date Message Actions
183:f205b2eea7c2 2018-10-26 mdot-library revision 3.1.0-49-g926b83a and mbed-os revision mbed-os-5.9.6 File  Diff  Annotate
182:b642f4d0c95b 2018-10-12 mdot-library revision 3.1.0-36-gf489e3e and mbed-os revision mbed-os-5.9.6 File  Diff  Annotate
179:578d8030ba57 2018-09-18 mdot-library revision 3.1.0-28-g84dbee8 and mbed-os revision mbed-os-5.9.6 File  Diff  Annotate
176:e8835022d431 2018-09-05 mdot-library revision 3.1.0-23-g0219320 and mbed-os revision mbed-os-5.9.6 File  Diff  Annotate
173:88c20655ca6f 2018-09-04 mdot-library revision 3.1.0-18-gba4df31 and mbed-os revision mbed-os-5.7.7 File  Diff  Annotate
172:7ec44396a51b 2018-08-30 mdot-library revision 3.1.0-class-b-alpha-1-15-g0c33f0a and mbed-os revision mbed-os-5.7.7 File  Diff  Annotate
157:8e9b1e84ffac 2018-06-04 mdot-library revision 3.1.0-rc5-10-g10868b7 and mbed-os revision mbed-os-5.7.7 File  Diff  Annotate
155:ecb07dbd16e3 2018-05-30 mdot-library revision 3.1.0-rc5-8-g6ac9f1c and mbed-os revision mbed-os-5.7.7 File  Diff  Annotate
150:7f5203f0d4d5 2018-05-04 mdot-library revision 3.1.0-rc4-6-ga54b65b and mbed-os revision mbed-os-5.7.7 File  Diff  Annotate
149:724ee1863b4a 2018-04-30 mdot-library revision 3.1.0-rc4-3-g4ce67aa and mbed-os revision mbed-os-5.7.7 File  Diff  Annotate
148:349066567b8f 2018-04-30 mdot-library revision 3.1.0-rc4-1-gae5dfa8 and mbed-os revision mbed-os-5.7.7 File  Diff  Annotate
144:72731889d6da 2018-03-20 mdot-library revision 3.1.0-rc2-1-g9b74cf2 and mbed-os revision mbed-os-5.7.4 File  Diff  Annotate
141:c6247c5469ff 2018-03-06 mdot-library revision 3.1.0-rc1-3-g43dd6d6 and mbed-os revision mbed-os-5.7.5 File  Diff  Annotate
136:d7d7093d4754 2018-02-16 mdot-library revision 3.0.2-51-g6ba87fb and mbed-os revision mbed-os-5.5.7 File  Diff  Annotate
135:69d2d725ea1e 2018-02-16 mdot-library revision 3.0.2-50-g861f38a and mbed-os revision mbed-os-5.5.7 File  Diff  Annotate
134:e5ad4bd55ce5 2018-02-14 mdot-library revision 3.0.2-41-g8e44939 and mbed-os revision mbed-os-5.5.7 File  Diff  Annotate
129:3d65480c7adc 2018-01-23 mdot-library revision 3.0.2-35-g4b99fdb and mbed-os revision mbed-os-5.5.7 File  Diff  Annotate
128:79ed06543c8e 2018-01-23 mdot-library revision 3.0.2-33-gf3c51e5 and mbed-os revision mbed-os-5.5.7 File  Diff  Annotate
120:1fbda752c380 2018-01-02 mdot-library revision 3.0.2-24-gee0f782 and mbed-os revision mbed-os-5.5.7 File  Diff  Annotate
116:bf760c5926cb 2017-12-28 mdot-library revision 3.0.2-19-g4ac921c and mbed-os revision mbed-os-5.5.7 File  Diff  Annotate
115:bcd44682ac1e 2017-12-28 mdot-library revision 3.0.2-18-gc1ba0dc and mbed-os revision mbed-os-5.5.7 File  Diff  Annotate
114:8462870088eb 2017-12-28 mdot-library revision 3.0.2-13-gdaed0e4 and mbed-os revision mbed-os-5.5.7 File  Diff  Annotate
111:4bebf247fa58 2017-11-29 mdot-library revision 3.0.1-4-gbca77ab and mbed-os revision mbed-os-5.5.7 File  Diff  Annotate
109:41d16d4ab0f0 2017-11-13 mdot-library revision 3.0.1-1-gada985f and mbed-os revision mbed-os-5.5.7 File  Diff  Annotate
103:06bafd42c324 2017-09-07 mdot-library revision 3.0.0-16-gfc4d5d4 and mbed-os revision mbed-os-5.4.7 File  Diff  Annotate
90:79a8c8660a4e 2017-08-08 mdot-library revision 3.0.0-9-gb9fedc4 and mbed-os revision mbed-os-5.5.3 File  Diff  Annotate
81:d8f2c4e664f5 2017-06-19 mdot-library revision 3.0.0-rc7-1-ga5165ae and mbed-os revision mbed-os-5.4.7 File  Diff  Annotate
43:ba29a595814e 2016-09-16 update from git revision 2.0.10-5-g90c25e8 File  Diff  Annotate
31:7fdee197d415 2016-09-08 update from git revision 2.0.6-13-g2591897 File  Diff  Annotate
30:c3150500b324 2016-09-07 update from git revision 2.0.6-11-gaae06a1 File  Diff  Annotate
19:f3a46d2bb9b3 2016-08-19 update from git revision 2.0.3-15-g0042cdf File  Diff  Annotate
17:306ffaa5d79b 2016-08-17 update library to 2.0.2 File  Diff  Annotate
16:b630e18103e5 2016-08-04 update from libmDot-2.0.1-ARMCC.tar.gz File  Diff  Annotate
12:54f9cac9d690 2016-03-10 update to version 1.0.3-1 of mDot library File  Diff  Annotate
11:d8464345e1f1 2016-01-07 build library against mbed rev 104 instead of 111 until RTC issue is fixed File  Diff  Annotate
10:27dafba9fe19 2015-12-02 Adding support for "sleep" mode and RTC_ALARM_OR_INTERRUPT wakeup File  Diff  Annotate
9:ec2fffe31793 2015-11-10 Update libmDot with RTC clock changes to preserve over sleep File  Diff  Annotate
7:683dba5d576f 2015-08-17 update to version 0.0.7 File  Diff  Annotate
6:390fc83d588d 2015-07-16 update from rev 0310fa23bc9c37c0575342961eac26e61d0966f4. NOTE: this version breaks compatibility with older MTS network server versions - use setJoinByteOrder(mDot::MSB) if operating with a network server version earlier than 0.0.5 or AEP 1.0.30 File  Diff  Annotate
5:0bfe6a650513 2015-07-07 update from revision 8f17f909cd6be946ce224094891e211901ac4836 - allow a DigitalOut pointer to be passed in and used as activity LED File  Diff  Annotate
4:94969e981dcc 2015-06-30 update mDot library and mDot.h from git revision c5af21e8ddc6d37b5cd2f375c4b3b50ab50af026 File  Diff  Annotate
0:c62615f15125 2015-06-24 initial commit, mDot header File  Diff  Annotate