forked from nrfconnect/sdk-nrf
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathKconfig
More file actions
31 lines (24 loc) · 672 Bytes
/
Kconfig
File metadata and controls
31 lines (24 loc) · 672 Bytes
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
#
# Copyright (c) 2018 Nordic Semiconductor
#
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
#
menuconfig DK_LIBRARY
bool "Button and LED Library for Nordic DKs"
select GPIO
if DK_LIBRARY
config DK_LIBRARY_BUTTON_SCAN_INTERVAL
int "Scanning interval of buttons in milliseconds"
default 10
config DK_LIBRARY_DYNAMIC_BUTTON_HANDLERS
bool "Enable the runtime assignable button handler API"
default y
module = DK_LIBRARY
module-str = DK library
source "$(ZEPHYR_BASE)/subsys/logging/Kconfig.template.log_config"
config DK_LIBRARY_SHELL
bool "DK_LIBRARY SHELL"
depends on SHELL
help
DK_LIBRARY shell allows to simulate button press
endif # DK_LIBRARY