LoRaWAN MAC layer implementation

Dependents:   LoRaWAN-demo-72_tjm LoRaWAN-demo-72_jlc LoRaWAN-demo-elmo frdm_LoRa_Connect_Woodstream_Demo_tjm ... more

LoRAWAN-lib is a port of the GitHub LoRaMac-node LoRaWAN MAC layer implementation.

This library depends on the SX1276Lib or SX1272Lib radio drivers depending on the used mbed component shield.

This library depends also on some cryptographic helper functions as well as helper functions for the timers management. These can be found on the example projects under the system directory.

The example projects are:

  1. LoRaWAN-demo-72
  2. LoRaWAN-demo-76
  3. LoRaWAN-demo-NAMote72

The LoRaWAN specification specifies different ISM bands operating parameters. These are all implemented under the LoRaMac-board.h file.

In order to select which band to use, please change line 24 of board.h file provided on the examples projects as follows:


EU868

board.h

#define USE_BAND_868


US915

board.h

#define USE_BAND_915


US915 - Hybrid

board.h

#define USE_BAND_915_HYBRID


CN780

board.h

#define USE_BAND_780


EU433

board.h

#define USE_BAND_433
Revision:
1:91e4e6c60d1e
Parent:
0:91d1a7783bb9
Child:
2:14a5d6ad92d5
--- a/LoRaMac-board.h	Tue Oct 20 13:21:26 2015 +0000
+++ b/LoRaMac-board.h	Mon Nov 23 10:09:43 2015 +0000
@@ -15,8 +15,6 @@
 #ifndef __LORAMAC_BOARD_H__
 #define __LORAMAC_BOARD_H__
 
-#define USE_BAND_868
-
 /*!
  * Returns individual channel mask
  *
@@ -48,6 +46,16 @@
 #define LORAMAC_DEFAULT_DATARATE                    DR_0
 
 /*!
+ * Minimal Rx1 receive datarate offset
+ */
+#define LORAMAC_MIN_RX1_DR_OFFSET                   0
+
+/*!
+ * Maximal Rx1 receive datarate offset
+ */
+#define LORAMAC_MAX_RX1_DR_OFFSET                   5
+
+/*!
  * Minimal Tx output power that can be used by the node
  */
 #define LORAMAC_MIN_TX_POWER                        TX_POWER_M5_DBM
@@ -129,6 +137,16 @@
 #define LORAMAC_DEFAULT_DATARATE                    DR_0
 
 /*!
+ * Minimal Rx1 receive datarate offset
+ */
+#define LORAMAC_MIN_RX1_DR_OFFSET                   0
+
+/*!
+ * Maximal Rx1 receive datarate offset
+ */
+#define LORAMAC_MAX_RX1_DR_OFFSET                   5
+
+/*!
  * Minimal Tx output power that can be used by the node
  */
 #define LORAMAC_MIN_TX_POWER                        TX_POWER_M5_DBM
@@ -210,6 +228,16 @@
 #define LORAMAC_DEFAULT_DATARATE                    DR_0
 
 /*!
+ * Minimal Rx1 receive datarate offset
+ */
+#define LORAMAC_MIN_RX1_DR_OFFSET                   0
+
+/*!
+ * Maximal Rx1 receive datarate offset
+ */
+#define LORAMAC_MAX_RX1_DR_OFFSET                   5
+
+/*!
  * Minimal Tx output power that can be used by the node
  */
 #define LORAMAC_MIN_TX_POWER                        TX_POWER_02_DBM
@@ -313,6 +341,16 @@
 #define LORAMAC_DEFAULT_DATARATE                    DR_0
 
 /*!
+ * Minimal Rx1 receive datarate offset
+ */
+#define LORAMAC_MIN_RX1_DR_OFFSET                   0
+
+/*!
+ * Maximal Rx1 receive datarate offset
+ */
+#define LORAMAC_MAX_RX1_DR_OFFSET                   3
+
+/*!
  * Minimal Tx output power that can be used by the node
  */
 #define LORAMAC_MIN_TX_POWER                        TX_POWER_10_DBM