1# Copyright (c) 2024 Kickmaker 2# SPDX-License-Identifier: Apache-2.0 3 4menuconfig INPUT_CF1133 5 bool "CF1133 capacitive touch panel driver" 6 default y 7 depends on DT_HAS_SITRONIX_CF1133_ENABLED 8 select I2C 9 help 10 Enable driver for Sitronix capacitive touch panel 11 controller. This driver should support CF1133. 12 13if INPUT_CF1133 14 15config INPUT_CF1133_INTERRUPT 16 bool "Interrupt" 17 default y 18 help 19 Enable interrupt support (requires all instances 20 of CF1133 have the INT gpio connected). 21 22config INPUT_CF1133_PERIOD_MS 23 int "Sample period" 24 depends on !INPUT_CF1133_INTERRUPT 25 default 10 26 help 27 Sample period in milliseconds when in polling mode. 28 29endif # INPUT_CF1133 30