1# Copyright (c) 2024, TDK Invensense 2# SPDX-License-Identifier: Apache-2.0 3 4config LOG 5 default y 6 7config LOG_PRINTK 8 default y 9 10config SENSOR_LOG_LEVEL 11 default 4 12 13config PRESSURE_DRDY 14 bool "Enable pressure data ready interrupt" 15 default y 16 17config PRESSURE_THRESHOLD 18 bool "Enable pressure threshold interrupt" 19 default y 20 21config PRESSURE_DELTA 22 bool "Enable pressure delta interrupt" 23 default y 24 25choice ICP201XX_TRIGGER_MODE 26 default ICP201XX_TRIGGER_GLOBAL_THREAD 27 depends on ICP201XX 28 29endchoice 30 31source "Kconfig.zephyr" 32