-
Notifications
You must be signed in to change notification settings - Fork 0
/
Kconfig
46 lines (42 loc) · 1.08 KB
/
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
#
# Copyright (c) 2018 Nordic Semiconductor
#
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
#
source "Kconfig.zephyr"
menu "Sensor Node"
config BT_LBS_SECURITY_ENABLED
bool "Enable security"
default y
select BT_SMP
select BT_SETTINGS
select FLASH
select FLASH_PAGE_LAYOUT
select FLASH_MAP
select NVS
select SETTINGS
help
"Enable BLE security for the LED-Button service"
config CONNECTABLE_ADV_INTERVAL_MIN
int "Connectable advertising minimum interval"
default 4800
help
Connectable advertising minimum interval in 0.625 milliseconds unit.
config CONNECTABLE_ADV_INTERVAL_MAX
int "Connectable advertising maximum interval"
default 4808
help
Connectable advertising maximum interval in 0.625 milliseconds unit.
config APP_CONTROL_SAMPLING_INTERVAL_S
int "sample interval [s]"
range 10 5400
default 10
help
Time in seconds between sample data acquisition from sensors
config SIMULATED_SENSOR
bool "Enable simulated sensor"
default n
help
In case you don't have environmental and IMU sensors, enabling this option will
build a simulated sensor driver
endmenu