diff options
author | Pete Johanson <peter@peterjohanson.com> | 2020-10-01 00:36:29 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-01 00:36:29 -0400 |
commit | 300b753ced471381c2a595b7248c1523d7984dca (patch) | |
tree | 5369577f8410d9648431c068a76cc58583db496a /app/drivers/zephyr/Kconfig | |
parent | d50c371b30ab423df0b513c07b394c31bf09d391 (diff) | |
parent | c2a861c0e6a731fd92368768a9b07d5feac7d374 (diff) |
Merge pull request #212 from shurikai/zmk-202
Add polling (instead of interrupt) based matrix kscan detection, to avoid interrupt limits on stm32
Diffstat (limited to 'app/drivers/zephyr/Kconfig')
-rw-r--r-- | app/drivers/zephyr/Kconfig | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/app/drivers/zephyr/Kconfig b/app/drivers/zephyr/Kconfig index 0237846..0534cab 100644 --- a/app/drivers/zephyr/Kconfig +++ b/app/drivers/zephyr/Kconfig @@ -5,10 +5,14 @@ config ZMK_KSCAN_GPIO_DRIVER if ZMK_KSCAN_GPIO_DRIVER -config ZMK_KSCAN_GPIO_POLLING - bool "Poll for key event triggers instead of using interrupts" +config ZMK_KSCAN_MATRIX_POLLING + bool "Poll for key event triggers instead of using interrupts on matrix boards." default n +config ZMK_KSCAN_DIRECT_POLLING + bool "Poll for key event triggers instead of using interrupts on direct wired boards." + default n + endif config ZMK_KSCAN_INIT_PRIORITY |