1#if !defined(_RADIOLIB_LORAWAN_H) && !RADIOLIB_EXCLUDE_LORAWAN
2#define _RADIOLIB_LORAWAN_H
4#include "../../TypeDef.h"
5#include "../PhysicalLayer/PhysicalLayer.h"
6#include "../../utils/Cryptography.h"
9#define RADIOLIB_LORAWAN_MODE_OTAA (0x07AA)
10#define RADIOLIB_LORAWAN_MODE_ABP (0x0AB9)
11#define RADIOLIB_LORAWAN_MODE_NONE (0x0000)
14#define RADIOLIB_LORAWAN_CLASS_A (0x00)
15#define RADIOLIB_LORAWAN_CLASS_B (0x01)
16#define RADIOLIB_LORAWAN_CLASS_C (0x02)
19#define RADIOLIB_LORAWAN_LORA_SYNC_WORD (0x34)
20#define RADIOLIB_LORAWAN_LORA_PREAMBLE_LEN (8)
21#define RADIOLIB_LORAWAN_GFSK_SYNC_WORD (0xC194C1)
22#define RADIOLIB_LORAWAN_GFSK_PREAMBLE_LEN (5)
23#define RADIOLIB_LORAWAN_LR_FHSS_SYNC_WORD (0x2C0F7995)
26#define RADIOLIB_LORAWAN_MHDR_MTYPE_JOIN_REQUEST (0x00 << 5)
27#define RADIOLIB_LORAWAN_MHDR_MTYPE_JOIN_ACCEPT (0x01 << 5)
28#define RADIOLIB_LORAWAN_MHDR_MTYPE_UNCONF_DATA_UP (0x02 << 5)
29#define RADIOLIB_LORAWAN_MHDR_MTYPE_UNCONF_DATA_DOWN (0x03 << 5)
30#define RADIOLIB_LORAWAN_MHDR_MTYPE_CONF_DATA_UP (0x04 << 5)
31#define RADIOLIB_LORAWAN_MHDR_MTYPE_CONF_DATA_DOWN (0x05 << 5)
32#define RADIOLIB_LORAWAN_MHDR_MTYPE_PROPRIETARY (0x07 << 5)
33#define RADIOLIB_LORAWAN_MHDR_MTYPE_MASK (0x07 << 5)
34#define RADIOLIB_LORAWAN_MHDR_MAJOR_R1 (0x00 << 0)
37#define RADIOLIB_LORAWAN_FCTRL_ADR_ENABLED (0x01 << 7)
38#define RADIOLIB_LORAWAN_FCTRL_ADR_DISABLED (0x00 << 7)
39#define RADIOLIB_LORAWAN_FCTRL_ADR_ACK_REQ (0x01 << 6)
40#define RADIOLIB_LORAWAN_FCTRL_ACK (0x01 << 5)
41#define RADIOLIB_LORAWAN_FCTRL_FRAME_PENDING (0x01 << 4)
44#define RADIOLIB_LORAWAN_FPORT_MAC_COMMAND (0x00 << 0)
45#define RADIOLIB_LORAWAN_FPORT_PAYLOAD_MIN (0x01 << 0)
46#define RADIOLIB_LORAWAN_FPORT_PAYLOAD_MAX (0xDF << 0)
47#define RADIOLIB_LORAWAN_FPORT_RESERVED (0xE0 << 0)
50#define RADIOLIB_LORAWAN_DATA_RATE_UNUSED (0x0F << 0)
51#define RADIOLIB_LORAWAN_TX_POWER_UNUSED (0x0F << 0)
54#define RADIOLIB_LORAWAN_UPLINK (0x00 << 0)
55#define RADIOLIB_LORAWAN_DOWNLINK (0x01 << 0)
56#define RADIOLIB_LORAWAN_RX1 (0x01 << 0)
57#define RADIOLIB_LORAWAN_RX2 (0x02 << 0)
58#define RADIOLIB_LORAWAN_RX_BC (0x03 << 0)
59#define RADIOLIB_LORAWAN_BAND_DYNAMIC (0)
60#define RADIOLIB_LORAWAN_BAND_FIXED (1)
61#define RADIOLIB_LORAWAN_CHANNEL_NUM_DATARATES (15)
64#define RADIOLIB_LORAWAN_RECEIVE_DELAY_1_MS (1000)
65#define RADIOLIB_LORAWAN_RECEIVE_DELAY_2_MS ((RADIOLIB_LORAWAN_RECEIVE_DELAY_1_MS) + 1000)
66#define RADIOLIB_LORAWAN_RX1_DR_OFFSET (0)
67#define RADIOLIB_LORAWAN_JOIN_ACCEPT_DELAY_1_MS (5000)
68#define RADIOLIB_LORAWAN_JOIN_ACCEPT_DELAY_2_MS (6000)
69#define RADIOLIB_LORAWAN_ADR_ACK_LIMIT_EXP (0x06)
70#define RADIOLIB_LORAWAN_ADR_ACK_DELAY_EXP (0x05)
71#define RADIOLIB_LORAWAN_RETRANSMIT_TIMEOUT_MIN_MS (1000)
72#define RADIOLIB_LORAWAN_RETRANSMIT_TIMEOUT_MAX_MS (3000)
73#define RADIOLIB_LORAWAN_POWER_STEP_SIZE_DBM (-2)
74#define RADIOLIB_LORAWAN_REJOIN_MAX_COUNT_N (10)
75#define RADIOLIB_LORAWAN_REJOIN_MAX_TIME_N (15)
78#define RADIOLIB_LORAWAN_JOIN_REQUEST_LEN (23)
79#define RADIOLIB_LORAWAN_JOIN_REQUEST_JOIN_EUI_POS (1)
80#define RADIOLIB_LORAWAN_JOIN_REQUEST_DEV_EUI_POS (9)
81#define RADIOLIB_LORAWAN_JOIN_REQUEST_DEV_NONCE_POS (17)
82#define RADIOLIB_LORAWAN_JOIN_REQUEST_TYPE (0xFF)
83#define RADIOLIB_LORAWAN_JOIN_REQUEST_TYPE_0 (0x00)
84#define RADIOLIB_LORAWAN_JOIN_REQUEST_TYPE_1 (0x01)
85#define RADIOLIB_LORAWAN_JOIN_REQUEST_TYPE_2 (0x02)
88#define RADIOLIB_LORAWAN_JOIN_ACCEPT_MAX_LEN (33)
89#define RADIOLIB_LORAWAN_JOIN_ACCEPT_JOIN_NONCE_POS (1)
90#define RADIOLIB_LORAWAN_JOIN_ACCEPT_HOME_NET_ID_POS (4)
91#define RADIOLIB_LORAWAN_JOIN_ACCEPT_DEV_ADDR_POS (7)
92#define RADIOLIB_LORAWAN_JOIN_ACCEPT_DL_SETTINGS_POS (11)
93#define RADIOLIB_LORAWAN_JOIN_ACCEPT_RX_DELAY_POS (12)
94#define RADIOLIB_LORAWAN_JOIN_ACCEPT_CFLIST_POS (13)
95#define RADIOLIB_LORAWAN_JOIN_ACCEPT_CFLIST_LEN (16)
96#define RADIOLIB_LORAWAN_JOIN_ACCEPT_CFLIST_TYPE_POS (RADIOLIB_LORAWAN_JOIN_ACCEPT_CFLIST_POS + RADIOLIB_LORAWAN_JOIN_ACCEPT_CFLIST_LEN - 1)
99#define RADIOLIB_LORAWAN_JOIN_ACCEPT_AES_JOIN_NONCE_POS (1)
100#define RADIOLIB_LORAWAN_JOIN_ACCEPT_AES_JOIN_EUI_POS (4)
101#define RADIOLIB_LORAWAN_JOIN_ACCEPT_AES_DEV_NONCE_POS (12)
102#define RADIOLIB_LORAWAN_JOIN_ACCEPT_AES_DEV_ADDR_POS (1)
105#define RADIOLIB_LORAWAN_JOIN_ACCEPT_R_1_0 (0x00 << 7)
106#define RADIOLIB_LORAWAN_JOIN_ACCEPT_R_1_1 (0x01 << 7)
107#define RADIOLIB_LORAWAN_JOIN_ACCEPT_F_NWK_S_INT_KEY (0x01)
108#define RADIOLIB_LORAWAN_JOIN_ACCEPT_APP_S_KEY (0x02)
109#define RADIOLIB_LORAWAN_JOIN_ACCEPT_S_NWK_S_INT_KEY (0x03)
110#define RADIOLIB_LORAWAN_JOIN_ACCEPT_NWK_S_ENC_KEY (0x04)
111#define RADIOLIB_LORAWAN_JOIN_ACCEPT_JS_ENC_KEY (0x05)
112#define RADIOLIB_LORAWAN_JOIN_ACCEPT_JS_INT_KEY (0x06)
113#define RADIOLIB_LORAWAN_JOIN_ACCEPT_ROOT_WOR_S_KEY (0x01)
114#define RADIOLIB_LORAWAN_JOIN_ACCEPT_WOR_S_INT_KEY (0x01)
115#define RADIOLIB_LORAWAN_JOIN_ACCEPT_WOR_S_ENC_KEY (0x02)
118#define RADIOLIB_LORAWAN_FHDR_LEN_START_OFFS (16)
119#define RADIOLIB_LORAWAN_FHDR_DEV_ADDR_POS (RADIOLIB_LORAWAN_FHDR_LEN_START_OFFS + 1)
120#define RADIOLIB_LORAWAN_FHDR_FCTRL_POS (RADIOLIB_LORAWAN_FHDR_LEN_START_OFFS + 5)
121#define RADIOLIB_LORAWAN_FHDR_FCNT_POS (RADIOLIB_LORAWAN_FHDR_LEN_START_OFFS + 6)
122#define RADIOLIB_LORAWAN_FHDR_FOPTS_POS (RADIOLIB_LORAWAN_FHDR_LEN_START_OFFS + 8)
123#define RADIOLIB_LORAWAN_FHDR_FOPTS_LEN_MASK (0x0F)
124#define RADIOLIB_LORAWAN_FHDR_FOPTS_MAX_LEN (15)
125#define RADIOLIB_LORAWAN_FHDR_FPORT_POS(FOPTS) (RADIOLIB_LORAWAN_FHDR_LEN_START_OFFS + 8 + (FOPTS))
126#define RADIOLIB_LORAWAN_FRAME_PAYLOAD_POS(FOPTS) (RADIOLIB_LORAWAN_FHDR_LEN_START_OFFS + 9 + (FOPTS))
127#define RADIOLIB_LORAWAN_FRAME_LEN(PAYLOAD, FOPTS) (16 + 13 + (PAYLOAD) + (FOPTS))
130#define RADIOLIB_LORAWAN_BLOCK_MAGIC_POS (0)
131#define RADIOLIB_LORAWAN_BLOCK_CONF_FCNT_POS (1)
132#define RADIOLIB_LORAWAN_BLOCK_DIR_POS (5)
133#define RADIOLIB_LORAWAN_BLOCK_DEV_ADDR_POS (6)
134#define RADIOLIB_LORAWAN_BLOCK_FCNT_POS (10)
137#define RADIOLIB_LORAWAN_ENC_BLOCK_MAGIC (0x01)
138#define RADIOLIB_LORAWAN_ENC_BLOCK_COUNTER_ID_POS (4)
139#define RADIOLIB_LORAWAN_ENC_BLOCK_COUNTER_POS (15)
142#define RADIOLIB_LORAWAN_MIC_BLOCK_MAGIC (0x49)
143#define RADIOLIB_LORAWAN_MIC_BLOCK_LEN_POS (15)
144#define RADIOLIB_LORAWAN_MIC_DATA_RATE_POS (3)
145#define RADIOLIB_LORAWAN_MIC_CH_INDEX_POS (4)
148#define RADIOLIB_LORAWAN_DWELL_TIME (400)
151#define RADIOLIB_LORAWAN_FCNT_NONE (0xFFFFFFFF)
154#define RADIOLIB_LORAWAN_DIFS_DEFAULT (2)
155#define RADIOLIB_LORAWAN_BACKOFF_MAX_DEFAULT (6)
156#define RADIOLIB_LORAWAN_MAX_CHANGES_DEFAULT (4)
159#define RADIOLIB_LORAWAN_NUM_MAC_COMMANDS (24)
161#define RADIOLIB_LORAWAN_MAC_RESET (0x01)
162#define RADIOLIB_LORAWAN_MAC_LINK_CHECK (0x02)
163#define RADIOLIB_LORAWAN_MAC_LINK_ADR (0x03)
164#define RADIOLIB_LORAWAN_MAC_DUTY_CYCLE (0x04)
165#define RADIOLIB_LORAWAN_MAC_RX_PARAM_SETUP (0x05)
166#define RADIOLIB_LORAWAN_MAC_DEV_STATUS (0x06)
167#define RADIOLIB_LORAWAN_MAC_NEW_CHANNEL (0x07)
168#define RADIOLIB_LORAWAN_MAC_RX_TIMING_SETUP (0x08)
169#define RADIOLIB_LORAWAN_MAC_TX_PARAM_SETUP (0x09)
170#define RADIOLIB_LORAWAN_MAC_DL_CHANNEL (0x0A)
171#define RADIOLIB_LORAWAN_MAC_REKEY (0x0B)
172#define RADIOLIB_LORAWAN_MAC_ADR_PARAM_SETUP (0x0C)
173#define RADIOLIB_LORAWAN_MAC_DEVICE_TIME (0x0D)
174#define RADIOLIB_LORAWAN_MAC_FORCE_REJOIN (0x0E)
175#define RADIOLIB_LORAWAN_MAC_REJOIN_PARAM_SETUP (0x0F)
176#define RADIOLIB_LORAWAN_MAC_DEVICE_MODE (0x20)
177#define RADIOLIB_LORAWAN_MAC_PROPRIETARY (0x80)
180#define RADIOLIB_LORAWAN_NUM_SUPPORTED_PACKAGES (7)
183#define RADIOLIB_LORAWAN_PACKAGE_TS007 (0)
184#define RADIOLIB_LORAWAN_PACKAGE_TS003 (1)
185#define RADIOLIB_LORAWAN_PACKAGE_TS005 (2)
186#define RADIOLIB_LORAWAN_PACKAGE_TS004 (3)
187#define RADIOLIB_LORAWAN_PACKAGE_TS006 (4)
188#define RADIOLIB_LORAWAN_PACKAGE_TS009 (5)
189#define RADIOLIB_LORAWAN_PACKAGE_TS011 (6)
192#define RADIOLIB_LORAWAN_FPORT_TS007 (225)
193#define RADIOLIB_LORAWAN_FPORT_TS003 (202)
194#define RADIOLIB_LORAWAN_FPORT_TS005 (200)
195#define RADIOLIB_LORAWAN_FPORT_TS004 (201)
196#define RADIOLIB_LORAWAN_FPORT_TS006 (203)
197#define RADIOLIB_LORAWAN_FPORT_TS009 (224)
198#define RADIOLIB_LORAWAN_FPORT_TS011 (226)
201#define RADIOLIB_LORAWAN_MAX_NUM_DYNAMIC_CHANNELS (16)
202#define RADIOLIB_LORAWAN_MAX_NUM_SUBBANDS (12)
203#define RADIOLIB_LORAWAN_MAX_NUM_FIXED_CHANNELS (96)
206#define RADIOLIB_LORAWAN_MAX_MAC_COMMAND_LEN_DOWN (5)
207#define RADIOLIB_LORAWAN_MAX_MAC_COMMAND_LEN_UP (2)
208#define RADIOLIB_LORAWAN_MAX_NUM_ADR_COMMANDS (8)
210#define RADIOLIB_LORAWAN_MAX_DOWNLINK_SIZE (250)
213#define RADIOLIB_LORAWAN_SESSION_NONE (0x00)
214#define RADIOLIB_LORAWAN_SESSION_ACTIVATING (0x01)
215#define RADIOLIB_LORAWAN_SESSION_PENDING (0x02)
216#define RADIOLIB_LORAWAN_SESSION_ACTIVE (0x03)
219#define RADIOLIB_LORAWAN_DELAY_SLEEP_THRESHOLD (50)
242#define RADIOLIB_LORAWAN_MAC_COMMAND_NONE { .cid = 0, .lenDn = 0, .lenUp = 0, .persist = false, .user = false }
245 { RADIOLIB_LORAWAN_MAC_RESET, 1, 1,
true,
false },
246 { RADIOLIB_LORAWAN_MAC_LINK_CHECK, 2, 0,
false,
true },
247 { RADIOLIB_LORAWAN_MAC_LINK_ADR, 4, 1,
false,
false },
248 { RADIOLIB_LORAWAN_MAC_DUTY_CYCLE, 1, 0,
false,
false },
249 { RADIOLIB_LORAWAN_MAC_RX_PARAM_SETUP, 4, 1,
true,
false },
250 { RADIOLIB_LORAWAN_MAC_DEV_STATUS, 0, 2,
false,
false },
251 { RADIOLIB_LORAWAN_MAC_NEW_CHANNEL, 5, 1,
false,
false },
252 { RADIOLIB_LORAWAN_MAC_RX_TIMING_SETUP, 1, 0,
true,
false },
253 { RADIOLIB_LORAWAN_MAC_TX_PARAM_SETUP, 1, 0,
true,
false },
254 { RADIOLIB_LORAWAN_MAC_DL_CHANNEL, 4, 1,
true,
false },
255 { RADIOLIB_LORAWAN_MAC_REKEY, 1, 1,
true,
false },
256 { RADIOLIB_LORAWAN_MAC_ADR_PARAM_SETUP, 1, 0,
false,
false },
257 { RADIOLIB_LORAWAN_MAC_DEVICE_TIME, 5, 0,
false,
true },
258 { RADIOLIB_LORAWAN_MAC_FORCE_REJOIN, 2, 0,
false,
false },
259 { RADIOLIB_LORAWAN_MAC_REJOIN_PARAM_SETUP, 1, 1,
false,
false },
260 { RADIOLIB_LORAWAN_MAC_DEVICE_MODE, 1, 1,
true,
false },
261 { RADIOLIB_LORAWAN_MAC_PROPRIETARY, 5, 0,
false,
true },
265typedef void (*PackageCb_t)(uint8_t* dataDown,
size_t lenDown);
291constexpr LoRaWANPackage_t PackageTable[RADIOLIB_LORAWAN_NUM_SUPPORTED_PACKAGES] = {
292 { RADIOLIB_LORAWAN_PACKAGE_TS007, RADIOLIB_LORAWAN_FPORT_TS007,
true,
true,
false, NULL },
293 { RADIOLIB_LORAWAN_PACKAGE_TS003, RADIOLIB_LORAWAN_FPORT_TS003,
true,
false,
false, NULL },
294 { RADIOLIB_LORAWAN_PACKAGE_TS005, RADIOLIB_LORAWAN_FPORT_TS005,
true,
false,
false, NULL },
295 { RADIOLIB_LORAWAN_PACKAGE_TS004, RADIOLIB_LORAWAN_FPORT_TS004,
true,
false,
false, NULL },
296 { RADIOLIB_LORAWAN_PACKAGE_TS006, RADIOLIB_LORAWAN_FPORT_TS006,
true,
false,
false, NULL },
297 { RADIOLIB_LORAWAN_PACKAGE_TS009, RADIOLIB_LORAWAN_FPORT_TS009,
true,
true,
false, NULL },
298 { RADIOLIB_LORAWAN_PACKAGE_TS011, RADIOLIB_LORAWAN_FPORT_TS011,
false,
true,
false, NULL }
301#define RADIOLIB_LORAWAN_PACKAGE_NONE { .packId = 0, .packFPort = 0, .isAppPack = false, .fixedFPort = false, .enabled = false, .callback = NULL }
303#define RADIOLIB_LORAWAN_NONCES_VERSION_VAL (0x0003)
305enum LoRaWANSchemeBase_t {
306 RADIOLIB_LORAWAN_NONCES_START = 0x00,
307 RADIOLIB_LORAWAN_NONCES_VERSION = RADIOLIB_LORAWAN_NONCES_START,
308 RADIOLIB_LORAWAN_NONCES_MODE = RADIOLIB_LORAWAN_NONCES_VERSION +
sizeof(uint16_t),
309 RADIOLIB_LORAWAN_NONCES_PLAN = RADIOLIB_LORAWAN_NONCES_MODE +
sizeof(uint16_t),
310 RADIOLIB_LORAWAN_NONCES_CHECKSUM = RADIOLIB_LORAWAN_NONCES_PLAN +
sizeof(uint8_t),
311 RADIOLIB_LORAWAN_NONCES_DEV_NONCE = RADIOLIB_LORAWAN_NONCES_CHECKSUM +
sizeof(uint16_t),
312 RADIOLIB_LORAWAN_NONCES_JOIN_NONCE = RADIOLIB_LORAWAN_NONCES_DEV_NONCE +
sizeof(uint16_t),
313 RADIOLIB_LORAWAN_NONCES_SIGNATURE = RADIOLIB_LORAWAN_NONCES_JOIN_NONCE + 3,
314 RADIOLIB_LORAWAN_NONCES_BUF_SIZE = RADIOLIB_LORAWAN_NONCES_SIGNATURE +
sizeof(uint16_t)
317enum LoRaWANSchemeSession_t {
318 RADIOLIB_LORAWAN_SESSION_START = 0x00,
319 RADIOLIB_LORAWAN_SESSION_STATUS = RADIOLIB_LORAWAN_SESSION_START,
320 RADIOLIB_LORAWAN_SESSION_NWK_SENC_KEY = RADIOLIB_LORAWAN_SESSION_STATUS + 1,
321 RADIOLIB_LORAWAN_SESSION_APP_SKEY = RADIOLIB_LORAWAN_SESSION_NWK_SENC_KEY + RADIOLIB_AES128_KEY_SIZE,
322 RADIOLIB_LORAWAN_SESSION_FNWK_SINT_KEY = RADIOLIB_LORAWAN_SESSION_APP_SKEY + RADIOLIB_AES128_KEY_SIZE,
323 RADIOLIB_LORAWAN_SESSION_SNWK_SINT_KEY = RADIOLIB_LORAWAN_SESSION_FNWK_SINT_KEY + RADIOLIB_AES128_KEY_SIZE,
324 RADIOLIB_LORAWAN_SESSION_DEV_ADDR = RADIOLIB_LORAWAN_SESSION_SNWK_SINT_KEY + RADIOLIB_AES128_KEY_SIZE,
325 RADIOLIB_LORAWAN_SESSION_NONCES_SIGNATURE = RADIOLIB_LORAWAN_SESSION_DEV_ADDR +
sizeof(uint32_t),
326 RADIOLIB_LORAWAN_SESSION_FCNT_UP = RADIOLIB_LORAWAN_SESSION_NONCES_SIGNATURE +
sizeof(uint16_t),
327 RADIOLIB_LORAWAN_SESSION_N_FCNT_DOWN = RADIOLIB_LORAWAN_SESSION_FCNT_UP +
sizeof(uint32_t),
328 RADIOLIB_LORAWAN_SESSION_A_FCNT_DOWN = RADIOLIB_LORAWAN_SESSION_N_FCNT_DOWN +
sizeof(uint32_t),
329 RADIOLIB_LORAWAN_SESSION_ADR_FCNT = RADIOLIB_LORAWAN_SESSION_A_FCNT_DOWN +
sizeof(uint32_t),
330 RADIOLIB_LORAWAN_SESSION_CONF_FCNT_UP = RADIOLIB_LORAWAN_SESSION_ADR_FCNT +
sizeof(uint32_t),
331 RADIOLIB_LORAWAN_SESSION_CONF_FCNT_DOWN = RADIOLIB_LORAWAN_SESSION_CONF_FCNT_UP +
sizeof(uint32_t),
332 RADIOLIB_LORAWAN_SESSION_RJ_COUNT0 = RADIOLIB_LORAWAN_SESSION_CONF_FCNT_DOWN +
sizeof(uint32_t),
333 RADIOLIB_LORAWAN_SESSION_RJ_COUNT1 = RADIOLIB_LORAWAN_SESSION_RJ_COUNT0 +
sizeof(uint16_t),
334 RADIOLIB_LORAWAN_SESSION_HOMENET_ID = RADIOLIB_LORAWAN_SESSION_RJ_COUNT1 +
sizeof(uint16_t),
335 RADIOLIB_LORAWAN_SESSION_VERSION = RADIOLIB_LORAWAN_SESSION_HOMENET_ID +
sizeof(uint32_t),
336 RADIOLIB_LORAWAN_SESSION_CLASS = RADIOLIB_LORAWAN_SESSION_VERSION + 1,
337 RADIOLIB_LORAWAN_SESSION_LINK_ADR = RADIOLIB_LORAWAN_SESSION_CLASS +
sizeof(uint8_t),
338 RADIOLIB_LORAWAN_SESSION_DUTY_CYCLE = RADIOLIB_LORAWAN_SESSION_LINK_ADR + 14,
339 RADIOLIB_LORAWAN_SESSION_RX_PARAM_SETUP = RADIOLIB_LORAWAN_SESSION_DUTY_CYCLE + 1,
340 RADIOLIB_LORAWAN_SESSION_RX_TIMING_SETUP = RADIOLIB_LORAWAN_SESSION_RX_PARAM_SETUP + 4,
341 RADIOLIB_LORAWAN_SESSION_TX_PARAM_SETUP = RADIOLIB_LORAWAN_SESSION_RX_TIMING_SETUP + 1,
342 RADIOLIB_LORAWAN_SESSION_ADR_PARAM_SETUP = RADIOLIB_LORAWAN_SESSION_TX_PARAM_SETUP + 1,
343 RADIOLIB_LORAWAN_SESSION_REJOIN_PARAM_SETUP = RADIOLIB_LORAWAN_SESSION_ADR_PARAM_SETUP + 1,
344 RADIOLIB_LORAWAN_SESSION_UL_CHANNELS = RADIOLIB_LORAWAN_SESSION_REJOIN_PARAM_SETUP + 1,
345 RADIOLIB_LORAWAN_SESSION_DL_CHANNELS = RADIOLIB_LORAWAN_SESSION_UL_CHANNELS + RADIOLIB_LORAWAN_MAX_NUM_DYNAMIC_CHANNELS*5,
346 RADIOLIB_LORAWAN_SESSION_AVAILABLE_CHANNELS = RADIOLIB_LORAWAN_SESSION_DL_CHANNELS + RADIOLIB_LORAWAN_MAX_NUM_DYNAMIC_CHANNELS*4,
347 RADIOLIB_LORAWAN_SESSION_MAC_QUEUE = RADIOLIB_LORAWAN_SESSION_AVAILABLE_CHANNELS + RADIOLIB_LORAWAN_MAX_NUM_SUBBANDS,
348 RADIOLIB_LORAWAN_SESSION_MAC_QUEUE_LEN = RADIOLIB_LORAWAN_SESSION_MAC_QUEUE + RADIOLIB_LORAWAN_FHDR_FOPTS_MAX_LEN,
349 RADIOLIB_LORAWAN_SESSION_SIGNATURE = RADIOLIB_LORAWAN_SESSION_MAC_QUEUE_LEN +
sizeof(uint8_t),
350 RADIOLIB_LORAWAN_SESSION_BUF_SIZE = RADIOLIB_LORAWAN_SESSION_SIGNATURE +
sizeof(uint16_t)
376#define RADIOLIB_LORAWAN_CHANNEL_NONE { .idx = 0, .freq = 0, .drMin = 0, .drMax = 0, \
377 .dr = RADIOLIB_LORAWAN_DATA_RATE_UNUSED }
405#define RADIOLIB_LORAWAN_CHANNEL_SPAN_NONE { .numChannels = 0, .freqStart = 0, .freqStep = 0, .drMin = 0, .drMax = 0, .drJoinRequest = RADIOLIB_LORAWAN_DATA_RATE_UNUSED }
413#define RADIOLIB_DATARATE_NONE { .modem = RADIOLIB_MODEM_NONE, .dr = {.lora = {0, 0, 0}}, .pc = {.lora = { 8, 0, 0, 0}}}
465 uint8_t rx1DrTable[RADIOLIB_LORAWAN_CHANNEL_NUM_DATARATES][8];
513#define RADIOLIB_LORAWAN_NUM_SUPPORTED_BANDS (BandLast - BandEU868)
627 int16_t
beginOTAA(uint64_t joinEUI, uint64_t devEUI,
const uint8_t* nwkKey,
const uint8_t* appKey);
639 int16_t
beginABP(uint32_t addr,
const uint8_t* fNwkSIntKey,
const uint8_t* sNwkSIntKey,
const uint8_t* nwkSEncKey,
const uint8_t* appSKey);
673 int16_t
startMulticastSession(uint8_t cls, uint32_t mcAddr,
const uint8_t* mcAppSKey,
const uint8_t* mcNwkSKey, uint32_t mcFCntMin = 0, uint32_t mcFCntMax = 0xFFFFFFFF, uint32_t mcFreq = 0, uint8_t mcDr = RADIOLIB_LORAWAN_DATA_RATE_UNUSED);
678 #if defined(RADIOLIB_BUILD_ARDUINO)
750 virtual int16_t
sendReceive(
const uint8_t* dataUp,
size_t lenUp, uint8_t fPort, uint8_t* dataDown,
size_t* lenDown,
bool isConfirmed =
false,
LoRaWANEvent_t* eventUp = NULL,
LoRaWANEvent_t* eventDown = NULL);
789 int16_t
getMacDeviceTimeAns(uint32_t* timestamp, uint16_t* milliseconds,
bool returnUnix =
true);
817 void setADR(
bool enable =
true);
842 void setCSMA(
bool csmaEnabled, uint8_t maxChanges = 4, uint8_t backoffMax = 0, uint8_t difsSlots = 2);
931 int16_t
addAppPackage(uint8_t packageId, PackageCb_t callback);
945 int16_t
addAppPackage(uint8_t packageId, PackageCb_t callback, uint8_t fPort);
973 uint8_t bufferNonces[RADIOLIB_LORAWAN_NONCES_BUF_SIZE] = { 0 };
976 uint8_t bufferSession[RADIOLIB_LORAWAN_SESSION_BUF_SIZE] = { 0 };
978 uint8_t fOptsUp[RADIOLIB_LORAWAN_FHDR_FOPTS_MAX_LEN] = { 0 };
979 uint8_t fOptsDown[RADIOLIB_LORAWAN_FHDR_FOPTS_MAX_LEN] = { 0 };
980 uint8_t fOptsUpLen = 0;
981 uint8_t fOptsDownLen = 0;
983 uint16_t lwMode = RADIOLIB_LORAWAN_MODE_NONE;
984 uint8_t lwClass = RADIOLIB_LORAWAN_CLASS_A;
985 uint8_t sessionStatus = RADIOLIB_LORAWAN_SESSION_NONE;
987 uint64_t joinEUI = 0;
989 uint8_t nwkKey[RADIOLIB_AES128_KEY_SIZE] = { 0 };
990 uint8_t appKey[RADIOLIB_AES128_KEY_SIZE] = { 0 };
994 uint32_t devAddr = 0;
995 uint8_t appSKey[RADIOLIB_AES128_KEY_SIZE] = { 0 };
996 uint8_t fNwkSIntKey[RADIOLIB_AES128_KEY_SIZE] = { 0 };
997 uint8_t sNwkSIntKey[RADIOLIB_AES128_KEY_SIZE] = { 0 };
998 uint8_t nwkSEncKey[RADIOLIB_AES128_KEY_SIZE] = { 0 };
999 uint8_t jSIntKey[RADIOLIB_AES128_KEY_SIZE] = { 0 };
1001 uint16_t keyCheckSum = 0;
1004 uint16_t devNonce = 0;
1005 uint32_t joinNonce = 0;
1008 uint32_t homeNetId = 0;
1009 uint8_t adrLimitExp = RADIOLIB_LORAWAN_ADR_ACK_LIMIT_EXP;
1010 uint8_t adrDelayExp = RADIOLIB_LORAWAN_ADR_ACK_DELAY_EXP;
1011 uint8_t nbTrans = 1;
1012 uint8_t txPowerSteps = 0;
1013 uint8_t txPowerMax = 0;
1014 uint32_t fCntUp = 0;
1015 uint32_t aFCntDown = 0;
1016 uint32_t nFCntDown = 0;
1017 uint32_t confFCntUp = RADIOLIB_LORAWAN_FCNT_NONE;
1018 uint32_t confFCntDown = RADIOLIB_LORAWAN_FCNT_NONE;
1019 uint32_t adrFCnt = 0;
1022 bool adrEnabled =
true;
1025 bool dutyCycleEnabled =
false;
1026 uint32_t dutyCycle = 0;
1029 uint16_t dwellTimeUp = 0;
1030 uint16_t dwellTimeDn = 0;
1036 uint8_t multicast =
false;
1037 uint32_t mcAddr = 0;
1038 uint8_t mcAppSKey[RADIOLIB_AES128_KEY_SIZE] = { 0 };
1039 uint8_t mcNwkSKey[RADIOLIB_AES128_KEY_SIZE] = { 0 };
1040 uint32_t mcAFCnt = 0;
1041 uint32_t mcAFCntMax = 0;
1047 bool csmaEnabled =
false;
1050 uint8_t maxChanges = RADIOLIB_LORAWAN_MAX_CHANGES_DEFAULT;
1055 uint8_t backoffMax = RADIOLIB_LORAWAN_BACKOFF_MAX_DEFAULT;
1058 uint8_t difsSlots = RADIOLIB_LORAWAN_DIFS_DEFAULT;
1061 LoRaWANChannel_t dynamicChannels[2][RADIOLIB_LORAWAN_MAX_NUM_DYNAMIC_CHANNELS];
1064 uint16_t channelMasks[RADIOLIB_LORAWAN_MAX_NUM_FIXED_CHANNELS / 16] = { 0 };
1065 uint16_t channelFlags[RADIOLIB_LORAWAN_MAX_NUM_FIXED_CHANNELS / 16] = { 0 };
1068 LoRaWANChannel_t channels[4] = { RADIOLIB_LORAWAN_CHANNEL_NONE, RADIOLIB_LORAWAN_CHANNEL_NONE,
1069 RADIOLIB_LORAWAN_CHANNEL_NONE, RADIOLIB_LORAWAN_CHANNEL_NONE };
1074 RADIOLIB_LORAWAN_RECEIVE_DELAY_1_MS,
1075 RADIOLIB_LORAWAN_RECEIVE_DELAY_2_MS,
1079 uint8_t rx1DrOffset = 0;
1094 uint8_t battLevel = 0xFF;
1097 bool isMACPayload =
false;
1100 uint8_t subBand = 0;
1109 void createSession();
1112 void composeJoinRequest(uint8_t* joinRequestMsg);
1118 void processCFList(
const uint8_t* cfList);
1121 int16_t isValidUplink(
size_t len, uint8_t fPort);
1127 void composeUplink(
const uint8_t* in, uint8_t lenIn, uint8_t* out, uint8_t fPort,
bool isConfirmed);
1130 void micUplink(uint8_t* inOut,
size_t lenInOut);
1133 int16_t transmitUplink(
const LoRaWANChannel_t* chnl, uint8_t* in, uint8_t len,
bool retrans =
false);
1142 virtual int16_t receiveDownlink();
1145 int16_t parseDownlink(uint8_t* data,
size_t* len, uint8_t window,
LoRaWANEvent_t* event = NULL);
1149 int16_t addNwkPackage(uint8_t packageId);
1152 bool execMacCommand(uint8_t cid, uint8_t* optIn, uint8_t lenIn);
1153 bool execMacCommand(uint8_t cid, uint8_t* optIn, uint8_t lenIn, uint8_t* optOut);
1156 virtual bool derivedMacHandler(uint8_t cid, uint8_t* optIn, uint8_t lenIn, uint8_t* optOut);
1159 void preprocessMacLinkAdr(uint8_t* mPtr, uint8_t cLen, uint8_t* mAdrOpt);
1162 void postprocessMacLinkAdr(uint8_t* ack, uint8_t cLen);
1173 virtual int16_t getMacLen(uint8_t cid, uint8_t* len, uint8_t dir,
bool inclusive =
false, uint8_t* payload = NULL);
1178 bool isPersistentMacCommand(uint8_t cid, uint8_t dir);
1181 int16_t pushMacCommand(uint8_t cid,
const uint8_t* cOcts, uint8_t* out, uint8_t* lenOut, uint8_t dir);
1184 int16_t getMacPayload(uint8_t cid,
const uint8_t* in, uint8_t lenIn, uint8_t* out, uint8_t dir);
1187 int16_t deleteMacCommand(uint8_t cid, uint8_t* inOut, uint8_t* lenInOut, uint8_t dir);
1190 void clearMacCommands(uint8_t* inOut, uint8_t* lenInOut, uint8_t dir);
1193 int16_t setPhyProperties(
const LoRaWANChannel_t* chnl, uint8_t dir, int8_t pwr,
size_t pre = 0);
1196 bool csmaChannelClear(uint8_t difs, uint8_t numBackoff);
1199 bool cadChannelClear();
1202 void enableDefaultChannels(
bool addDynamic =
false);
1206 bool calculateChannelFlags();
1209 int16_t selectChannels();
1212 uint32_t generateMIC(
const uint8_t* msg,
size_t len, uint8_t* key);
1216 bool verifyMIC(uint8_t* msg,
size_t len, uint8_t* key);
1219 void processAES(
const uint8_t* in,
size_t len, uint8_t* key, uint8_t* out, uint32_t addr, uint32_t fCnt, uint8_t dir, uint8_t ctrId,
bool counter);
1225 static uint16_t checkSum16(
const uint8_t *key, uint16_t keyLen);
1228 static int16_t checkBufferCommon(
const uint8_t *buffer, uint16_t size);
1231 template<
typename T>
1232 static T ntoh(
const uint8_t* buff,
size_t size = 0);
1235 template<
typename T>
1236 static void hton(uint8_t* buff, T val,
size_t size = 0);
1240T LoRaWANNode::ntoh(
const uint8_t* buff,
size_t size) {
1241 const uint8_t* buffPtr = buff;
1242 size_t targetSize =
sizeof(T);
1247 for(
size_t i = 0; i < targetSize; i++) {
1248 res |= (uint32_t)(*(buffPtr++)) << 8*i;
1254void LoRaWANNode::hton(uint8_t* buff, T val,
size_t size) {
1255 uint8_t* buffPtr = buff;
1256 size_t targetSize =
sizeof(T);
1260 for(
size_t i = 0; i < targetSize; i++) {
1261 *(buffPtr++) = val >> 8*i;
LoRaWAN-compatible node (class A device).
Definition LoRaWAN.h:577
void clearSession()
Clear an active session. This requires the device to rejoin the network.
Definition LoRaWAN.cpp:313
virtual int16_t sendReceive(const char *strUp, uint8_t fPort, bool isConfirmed=false, LoRaWANEvent_t *eventUp=NULL, LoRaWANEvent_t *eventDown=NULL)
Send a message to the server and wait for a downlink during Rx1 and/or Rx2 window.
Definition LoRaWAN.cpp:44
void setSleepFunction(SleepCb_t cb)
Set custom delay/sleep function callback. If set, LoRaWAN node will call this function to wait for pe...
Definition LoRaWAN.cpp:3591
int16_t startMulticastSession(uint8_t cls, uint32_t mcAddr, const uint8_t *mcAppSKey, const uint8_t *mcNwkSKey, uint32_t mcFCntMin=0, uint32_t mcFCntMax=0xFFFFFFFF, uint32_t mcFreq=0, uint8_t mcDr=RADIOLIB_LORAWAN_DATA_RATE_UNUSED)
Start a Multicast session.
Definition LoRaWAN.cpp:1094
int16_t setDatarate(uint8_t drUp)
Set uplink datarate. This should not be used when ADR is enabled.
Definition LoRaWAN.cpp:3026
void scheduleTransmission(RadioLibTime_t tUplink)
Set the exact time a transmission should occur. Note: this is the internal clock time....
Definition LoRaWAN.cpp:3150
RadioLibTime_t scanGuard
Rx window padding in milliseconds according to the spec, the Rx window must be at least enough time t...
Definition LoRaWAN.h:964
void setCSMA(bool csmaEnabled, uint8_t maxChanges=4, uint8_t backoffMax=0, uint8_t difsSlots=2)
Configures CSMA for LoRaWAN as per TR013, LoRa Alliance.
Definition LoRaWAN.cpp:3132
void(* SleepCb_t)(RadioLibTime_t ms)
Callback to a user-provided sleep function.
Definition LoRaWAN.h:909
int16_t addAppPackage(uint8_t packageId, PackageCb_t callback)
Add a LoRaWAN Application Package as defined in one of the TSxxx documents. Any downlinks that occur ...
Definition LoRaWAN.cpp:3595
void setDutyCycle(bool enable=true, RadioLibTime_t msPerHour=0)
Toggle adherence to dutyCycle limits to on or off.
Definition LoRaWAN.cpp:3106
int16_t beginABP(uint32_t addr, const uint8_t *fNwkSIntKey, const uint8_t *sNwkSIntKey, const uint8_t *nwkSEncKey, const uint8_t *appSKey)
Set the device credentials and activation configuration.
Definition LoRaWAN.cpp:640
RadioLibTime_t timeUntilUplink()
Returns time in milliseconds until next uplink is available under dutyCycle limits.
Definition LoRaWAN.cpp:3543
int16_t getDownlinkClassC(uint8_t *dataDown, size_t *lenDown, LoRaWANEvent_t *eventDown=NULL)
Check if there is an RxC downlink and parse it if available.
Definition LoRaWAN.cpp:2176
void stopMulticastSession()
Stop an ongoing multicast session.
Definition LoRaWAN.cpp:1146
void setDeviceStatus(uint8_t battLevel)
Set device status.
Definition LoRaWAN.cpp:3146
RadioLibTime_t dutyCycleInterval(RadioLibTime_t msPerHour, RadioLibTime_t airtime)
Calculate the minimum interval to adhere to a certain dutyCycle. This interval is based on the ToA of...
Definition LoRaWAN.cpp:3533
void setDwellTime(bool enable, RadioLibTime_t msPerUplink=0)
Set or disable uplink dwell time limitation; enabled by default if mandatory.
Definition LoRaWAN.cpp:3119
uint32_t getAFCntDown()
Returns the last application downlink's frame counter; also 0 if no application downlink occured yet.
Definition LoRaWAN.cpp:3166
RadioLibTime_t getLastToA()
Get the Time-on-air of the last uplink message (in milliseconds).
Definition LoRaWAN.cpp:3174
virtual int16_t activateOTAA(LoRaWANJoinEvent_t *joinEvent=NULL)
Join network by restoring OTAA session or performing over-the-air activation. By this procedure,...
Definition LoRaWAN.cpp:880
uint8_t * getBufferNonces()
Returns the pointer to the internal buffer that holds the LW base parameters.
Definition LoRaWAN.cpp:262
uint8_t * getBufferSession()
Returns the pointer to the internal buffer that holds the LW session parameters.
Definition LoRaWAN.cpp:455
bool isActivated()
Whether there is an ongoing session active.
Definition LoRaWAN.cpp:1061
int16_t setTxPower(int8_t txPower)
Configure TX power of the radio module.
Definition LoRaWAN.cpp:3044
uint32_t getNFCntDown()
Returns the last network downlink's frame counter; also 0 if no network downlink occured yet.
Definition LoRaWAN.cpp:3162
int16_t setClass(uint8_t cls)
Configure class (RADIOLIB_LORAWAN_CLASS_A or RADIOLIB_LORAWAN_CLASS_C)
Definition LoRaWAN.cpp:1065
int16_t beginOTAA(uint64_t joinEUI, uint64_t devEUI, const uint8_t *nwkKey, const uint8_t *appKey)
Set the device credentials and activation configuration.
Definition LoRaWAN.cpp:611
uint8_t getMaxPayloadLen()
Returns the maximum allowed uplink payload size given the current MAC state. Most importantly,...
Definition LoRaWAN.cpp:3552
virtual int16_t activateABP()
Join network by restoring ABP session or performing over-the-air activation. In this procedure,...
Definition LoRaWAN.cpp:965
uint32_t getFCntUp()
Returns the last uplink's frame counter; also 0 if no uplink occured yet.
Definition LoRaWAN.cpp:3155
int16_t setBufferNonces(const uint8_t *persistentBuffer)
Fill the internal buffer that holds the LW base parameters with a supplied buffer.
Definition LoRaWAN.cpp:276
int16_t setRx2Dr(uint8_t dr)
Configure the Rx2 datarate for ABP mode. This should not be needed for LoRaWAN 1.1 as it is configure...
Definition LoRaWAN.cpp:3070
int16_t sendMacCommandReq(uint8_t cid)
Add a MAC command to the uplink queue. Only LinkCheck and DeviceTime are available to the user....
Definition LoRaWAN.cpp:2828
int16_t getMacLinkCheckAns(uint8_t *margin, uint8_t *gwCnt)
Returns the quality of connectivity after requesting a LinkCheck MAC command.
Definition LoRaWAN.cpp:2852
void setADR(bool enable=true)
Toggle ADR to on or off.
Definition LoRaWAN.cpp:3102
int16_t getMacDeviceTimeAns(uint32_t *timestamp, uint16_t *milliseconds, bool returnUnix=true)
Returns the network time after requesting a DeviceTime MAC command. Note: the network returns the tim...
Definition LoRaWAN.cpp:2863
int16_t setBufferSession(const uint8_t *persistentBuffer)
Fill the internal buffer that holds the LW session parameters with a supplied buffer.
Definition LoRaWAN.cpp:483
uint32_t getDevAddr()
Returns the DevAddr of the device, regardless of OTAA or ABP mode.
Definition LoRaWAN.cpp:3170
void removePackage(uint8_t packageId)
Disable a package that was previously added.
Definition LoRaWAN.cpp:3634
Provides common interface for protocols that run on LoRa/FSK modules, such as RTTY or LoRaWAN....
Definition PhysicalLayer.h:257
unsigned long RadioLibTime_t
Type used for durations in RadioLib.
Definition TypeDef.h:647
Structure to save information about LoRaWAN band.
Definition LoRaWAN.h:419
LoRaWANDataRate_t dataRates[RADIOLIB_LORAWAN_CHANNEL_NUM_DATARATES]
The corresponding datarates, bandwidths and coding rates for DR index.
Definition LoRaWAN.h:477
int8_t powerMax
Maximum allowed output power in this band in dBm.
Definition LoRaWAN.h:436
bool txParamSupported
Whether this band implements the MAC command TxParamSetupReq.
Definition LoRaWAN.h:451
LoRaWANChannel_t txAck[2]
Relay channels for ACK downlink.
Definition LoRaWAN.h:474
RadioLibTime_t dutyCycle
Number of milliseconds per hour of allowed Time-on-Air.
Definition LoRaWAN.h:442
RadioLibTime_t dwellTimeUp
Maximum dwell time per uplink message in milliseconds.
Definition LoRaWAN.h:445
LoRaWANChannel_t txWoR[2]
Relay channels for WoR uplink.
Definition LoRaWAN.h:471
uint32_t freqMin
Minimum allowed frequency (coded in 100 Hz steps)
Definition LoRaWAN.h:427
uint8_t payloadLenMax[RADIOLIB_LORAWAN_CHANNEL_NUM_DATARATES]
Array of allowed maximum application payload lengths for each data rate (N-value)
Definition LoRaWAN.h:433
LoRaWANChannel_t txFreqs[3]
A set of default uplink (TX) channels for dynamic bands.
Definition LoRaWAN.h:454
int8_t powerNumSteps
Number of power steps in this band.
Definition LoRaWAN.h:439
LoRaWANChannelSpan_t txSpans[2]
Default uplink (TX) channel spans for fixed bands, including Join-Request parameters.
Definition LoRaWAN.h:460
uint8_t bandNum
Identier for this band.
Definition LoRaWAN.h:421
uint32_t freqMax
Maximum allowed frequency (coded in 100 Hz steps)
Definition LoRaWAN.h:430
uint8_t bandType
Whether the channels are fixed per specification, or dynamically allocated through the network (plus ...
Definition LoRaWAN.h:424
LoRaWANChannel_t rx2
Backup channel for downlink (RX2) window.
Definition LoRaWAN.h:468
uint8_t numTxSpans
The number of TX channel spans for fixed bands.
Definition LoRaWAN.h:457
RadioLibTime_t dwellTimeDn
Maximum dwell time per downlink message in milliseconds.
Definition LoRaWAN.h:448
LoRaWANChannelSpan_t rx1Span
Default downlink (RX1) channel span for fixed bands.
Definition LoRaWAN.h:463
IDs of all currently supported bands.
Structure to save information about LoRaWAN channels. To save space, adjacent channels are saved in "...
Definition LoRaWAN.h:358
uint8_t dr
Datarate currently in use on this channel.
Definition LoRaWAN.h:372
uint32_t freq
The channel frequency (coded in 100 Hz steps)
Definition LoRaWAN.h:363
uint8_t idx
The channel number, as specified by defaults or the network.
Definition LoRaWAN.h:360
uint8_t drMin
Minimum allowed datarate for this channel.
Definition LoRaWAN.h:366
uint8_t drMax
Maximum allowed datarate for this channel (inclusive)
Definition LoRaWAN.h:369
Structure to save information about LoRaWAN channels. To save space, adjacent channels are saved in "...
Definition LoRaWAN.h:384
uint8_t drJoinRequest
Allowed data rates for a join request message.
Definition LoRaWAN.h:401
uint32_t freqStart
Center frequency of the first channel in span (coded in 100 Hz steps)
Definition LoRaWAN.h:389
uint8_t numChannels
Total number of channels in the span.
Definition LoRaWAN.h:386
uint8_t drMax
Maximum allowed datarate for all channels in this span (inclusive)
Definition LoRaWAN.h:398
uint32_t freqStep
Frequency step between adjacent channels (coded in 100 Hz steps)
Definition LoRaWAN.h:392
uint8_t drMin
Minimum allowed datarate for all channels in this span.
Definition LoRaWAN.h:395
Structure to save extra information about uplink/downlink event.
Definition LoRaWAN.h:537
float freq
Frequency in MHz.
Definition LoRaWAN.h:555
bool confirmed
Whether the event is confirmed or not (e.g., confirmed uplink sent by user application)
Definition LoRaWAN.h:542
uint8_t fPort
Port number.
Definition LoRaWAN.h:564
int16_t power
Transmit power in dBm for uplink, or RSSI for downlink.
Definition LoRaWAN.h:558
bool confirming
Whether the event is confirming a previous request (e.g., server downlink reply to confirmed uplink s...
Definition LoRaWAN.h:546
uint8_t datarate
Datarate.
Definition LoRaWAN.h:552
uint8_t dir
Event direction, one of RADIOLIB_LORAWAN_CHANNEL_DIR_*.
Definition LoRaWAN.h:539
uint8_t nbTrans
Number of times this uplink was transmitted (ADR)
Definition LoRaWAN.h:567
uint32_t fCnt
The appropriate frame counter - for different events, different frame counters will be reported!
Definition LoRaWAN.h:561
bool multicast
Multicast or unicast.
Definition LoRaWAN.h:570
bool frmPending
Whether further downlink messages are pending on the server side.
Definition LoRaWAN.h:549
Structure to save extra information about activation event.
Definition LoRaWAN.h:522
bool newSession
Whether a new session was started.
Definition LoRaWAN.h:524
uint32_t joinNonce
The received Join-Request JoinNonce value.
Definition LoRaWAN.h:530
uint16_t devNonce
The transmitted Join-Request DevNonce value.
Definition LoRaWAN.h:527
MAC command specification structure.
Definition LoRaWAN.h:225
const uint8_t lenDn
Uplink message length.
Definition LoRaWAN.h:230
const bool user
Whether this MAC command can be issued by the user or not.
Definition LoRaWAN.h:239
const uint8_t cid
Command ID.
Definition LoRaWAN.h:227
const uint8_t lenUp
Downlink message length.
Definition LoRaWAN.h:233
const bool persist
Some commands must be resent until Class A downlink received.
Definition LoRaWAN.h:236
LoRaWAN Packages structure (for TSxxx documents).
Definition LoRaWAN.h:271
uint8_t packId
Package ID as per TS008.
Definition LoRaWAN.h:273
uint8_t packFPort
Package default FPort (specified or recommended)
Definition LoRaWAN.h:276
bool isAppPack
Whether the package runs through the Application layer.
Definition LoRaWAN.h:279
bool enabled
Whether the package is currently in use.
Definition LoRaWAN.h:285
PackageCb_t callback
User-provided callback for handling package downlinks.
Definition LoRaWAN.h:288
bool fixedFPort
Whether the FPort value has a fixed value by specification.
Definition LoRaWAN.h:282
Common data rate structure.
Definition PhysicalLayer.h:74
Common packet configuration structure.
Definition PhysicalLayer.h:119