zephyr/drivers/kscan/Kconfig.cap1203
Kumar Gala 287043cddb drivers: kscan: Update Kconfig
* Utilize DT_HAS_<COMPAT>_ENABLED for devicetree based drivers
* Move to using select I2C' instead of 'depends on'
  (see commit df81fef944 for
   more details)

Signed-off-by: Kumar Gala <galak@kernel.org>
2022-08-09 23:37:46 -05:00

28 lines
609 B
Plaintext

# Copyright (c) 2022 Keiya Nobuta
# SPDX-License-Identifier: Apache-2.0
menuconfig KSCAN_CAP1203
bool "CAP1203 3-cannel capacitive touch sensor driver"
default y
depends on DT_HAS_MICROCHIP_CAP1203_ENABLED
select I2C
help
Enable driver for microchip CAP1203 3-cannel capacitive
touch sensor.
if KSCAN_CAP1203
config KSCAN_CAP1203_POLL
bool "Polling"
help
Enable polling mode when interrupt GPIO is not specified.
config KSCAN_CAP1203_PERIOD
int "Sample period"
depends on KSCAN_CAP1203_POLL
default 10
help
Sample period in milliseconds when in polling mode.
endif # KSCAN_CAP1203