-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrn2483.cfg
52 lines (46 loc) · 1.09 KB
/
rn2483.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
##
# This file will be included in the Makefile
##
###################
# Target Platform #
###################
# compiler used to cross-compile for target
cfg_COMPILER=arm-none-eabi-g++
###########
# LoRaWAN #
###########
## FREQUENCY
# Valid frequencies for the RN2483 module
# Options:
# 868
# 434
cfg_Frequency=868
## Keys & Identifiers
# A hexademical key / identifier
# Notes:
# DevAddr 8 bytes long
# DevEUI 16 bytes long
# AppEUI 16 bytes long
# AppKey 32 bytes long
cfg_DevAddr=4449434B
cfg_DevEUI=5457494E5045414B
cfg_AppEUI=4621434B54484953
cfg_AppKey=4D49544348454C4C54202620414C4558
## Join Mode
# The mode this module will use to join a LoRaWAN network
# Options:
# otaa Over The Air Activation
# apb Activation By Personalization
cfg_JoinMode=otaa
## Data Rate
# The
# Options:
# 0...3 Max data length 59 bytes
# 4 Max data length 123 bytes
# 5...7 Max data length 230 bytes
cfg_DataRate=5
## Port
# 0 TX payloads only contain MAC commands
# 1...223 Application-specific
# 224...255 Reserved for future standardized application extension
cfg_Port=1