1# 2# Copyright (c) 2024 Vitrolife A/S 3# 4# SPDX-License-Identifier: Apache-2.0 5# 6 7mainmenu "VEAA sample application" 8 9config SAMPLE_USE_SHELL 10 bool "Use sensor shell and disable loop" 11 default n 12 select SHELL 13 select SENSOR_SHELL 14 15config SAMPLE_LOOP_INTERVAL 16 int "Sample loop delay in milliseconds" 17 default 200 18 19config SAMPLE_LOOP_INCREMENT 20 int "Sample kPa increment per loop" 21 default 1 22 23source "Kconfig.zephyr" 24