-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKconfig
42 lines (32 loc) · 983 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
#
# Copyright (c) 2022 Lars Øvergård
#
# Copyright (c) 2020 Nordic Semiconductor ASA
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
#
menu "Water quality firmware settings"
config LTE_POWER_SAVING_MODE
bool "Request Power Saving Mode (PSM) from cellular network"
config WATER_QA_WATCHDOG_TIMEOUT_MSEC
int "Watchdog timeout in milliseconds"
default 60000 # TODO: Change this to better suit your usecase.
config SENSOR_DEV_NAME
string "Sensor device name"
help
Sensor data will be
fetched and sent to nRF Cloud.
config SENSOR_USAGE
bool "Enables the use of sensors"
config APPLICATION_WORKQUEUE_STACK_SIZE
int "Application workqueue stack size"
default 4096
config APPLICATION_WORKQUEUE_PRIORITY
int "Application workqueue priority"
default SYSTEM_WORKQUEUE_PRIORITY
endmenu
menu "Zephyr Kernel"
source "Kconfig.zephyr"
endmenu
module = WATER_QA
module-str = Water quality firmware
source "${ZEPHYR_BASE}/subsys/logging/Kconfig.template.log_config"