-
Notifications
You must be signed in to change notification settings - Fork 0
/
Kconfig
40 lines (30 loc) · 848 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
source "Kconfig.zephyr"
config PW_SIGN_KEY
string "Signing key"
config PW_UPDATE_PERIOD_SEC
int "How ofen update adv message data"
default 15
config PW_AUTO_STOP
bool "Automatic stop broadcasting w/o btn on"
default y
config PW_BUTTON_INTERVAL
int "Button ON state filter in 0.625ms units"
default 1600
config PW_BATT
bool "Have battery support"
default y
config PW_BATT_MIN_VOLTAGE
int "Max battery mVoltage"
default 1700
config PW_BATT_MAX_VOLTAGE
int "Max battery mVoltage"
default 3000
config ADV_USE_PUB_ADDRESS
bool "Advertise using identity address."
default y
config ADV_INTERVAL_MIN
int "Minimum periodic advertising interval in 0.625ms units"
default 160
config ADV_INTERVAL_MAX
int "Maximum periodic advertising interval in 0.625ms units"
default 240