forked from zephyrproject-rtos/zephyr
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from madmachineio/add_touch_drv
Add touch drv
- Loading branch information
Showing
6 changed files
with
583 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Copyright (c) 2020 MADMACHINE | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
menuconfig KSCAN_GT9X | ||
bool "GT91X capacitive touch panel driver" | ||
depends on I2C && HAS_DTS_I2C | ||
help | ||
Enable driver for the GT91X capacitive touch panel controller. | ||
|
||
config KSCAN_GT9X_PERIOD | ||
int "Sample period (ms)" | ||
default 10 | ||
depends on KSCAN_GT9X | ||
|
||
config KSCAN_GT9X_INTERRUPT | ||
bool "Enable interrupt" | ||
depends on KSCAN_GT9X |
Oops, something went wrong.