forked from zmkfirmware/zmk
-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(input): Cirque Pinnacle trackpad driver
Add the initial input driver for the Cirque Pinnacle ASIC found in Cirque GlidePoint trackpads.
- Loading branch information
1 parent
985b5ef
commit 6d0ff61
Showing
10 changed files
with
532 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# Copyright (c) 2022 The ZMK Contributors | ||
# SPDX-License-Identifier: MIT | ||
|
||
zephyr_library_amend() | ||
|
||
zephyr_library_sources_ifdef(CONFIG_INPUT_PINNACLE input_pinnacle.c) |
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,12 @@ | ||
# Copyright (c) 2022 The ZMK Contributors | ||
# SPDX-License-Identifier: MIT | ||
|
||
menuconfig INPUT_PINNACLE | ||
bool "Cirque Pinnacle trackpads" | ||
default y | ||
depends on GPIO | ||
depends on SPI || I2C | ||
depends on INPUT | ||
depends on DT_HAS_CIRQUE_PINNACLE_ENABLED | ||
help | ||
Enable driver for Cirque Pinnacle trackpads |
Oops, something went wrong.