-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathKconfig
More file actions
49 lines (40 loc) · 1.03 KB
/
Kconfig
File metadata and controls
49 lines (40 loc) · 1.03 KB
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
# BLE Beacon Configuration
menu "BLE Beacon Configuration"
config BEACON_IBEACON_MAJOR
int "iBeacon Major value"
default 1
range 0 65535
help
Major value for iBeacon advertisement
config BEACON_IBEACON_MINOR
int "iBeacon Minor value"
default 1
range 0 65535
help
Minor value for iBeacon advertisement
config BEACON_MODE_SWITCH_INTERVAL
int "Beacon mode switch interval (seconds)"
default 30
range 5 3600
help
Time interval in seconds between beacon mode switches
config BEACON_TX_POWER
int "Beacon TX power (dBm)"
default 8
range -20 8
help
Transmit power for beacon advertisements in dBm
config BEACON_ADV_INTERVAL_MIN
int "Minimum advertising interval (ms)"
default 160
range 20 10240
help
Minimum advertising interval in milliseconds
config BEACON_ADV_INTERVAL_MAX
int "Maximum advertising interval (ms)"
default 160
range 20 10240
help
Maximum advertising interval in milliseconds
endmenu
source "Kconfig.zephyr"