-
Notifications
You must be signed in to change notification settings - Fork 15
/
Kconfig
62 lines (43 loc) · 861 Bytes
/
Kconfig
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
53
54
55
56
57
58
59
60
61
62
menu "LMIC"
choice LMIC_DEFAULT_FREQ_BAND
prompt "Default frequency band"
config LMIC_FREQ_USE_EU_868
bool "868 MHz EU"
config LMIC_FREQ_USE_US_915
bool "915 MHz US"
endchoice
choice LMIC_SX_CHIP
prompt "LoRa chip"
config LMIC_USE_SX1276
bool "SX1276"
config LMIC_USE_SX1272
bool "SX1272"
endchoice
choice LMIC_SPI
prompt "SPI Host interface"
config LMIC_SPI_HSPI
bool "HSPI"
config LMIC_SPI_VSPI
bool "VSPI"
endchoice
config LMIC_DEBUG_LEVEL
int "LMIC debug level"
default 0
menu "Features"
config LMIC_FEATURE_JOIN
bool "Join"
help
Enable code required for OTA activation
default y
config LMIC_FEATURE_PING
bool "Ping"
help
Enable code required for pinging
default y
config LMIC_FEATURE_BEACONS
bool "Beacons"
help
Enable code required for beacon tracking
default y
endmenu
endmenu