summaryrefslogtreecommitdiff
path: root/app/drivers/CMakeLists.txt
diff options
context:
space:
mode:
authorPete Johanson <peter@peterjohanson.com>2021-01-28 22:54:44 -0500
committerPete Johanson <peter@peterjohanson.com>2021-09-14 20:48:28 -0400
commit647110e5e5adef98a133f5f65b212110e614309b (patch)
tree2295ff9a2135fc495db41da977459b1a86f19380 /app/drivers/CMakeLists.txt
parent2f0ad4cc8c7c4a4b0344206bce638a8241b85b95 (diff)
feat(drivers): Add mcp23017 driver based on upstream mcp23s17 one.
* Upstream Zephyr has in progress driver, so doing this locally here, until we can move over to that driver.
Diffstat (limited to 'app/drivers/CMakeLists.txt')
-rw-r--r--app/drivers/CMakeLists.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/drivers/CMakeLists.txt b/app/drivers/CMakeLists.txt
index c1625f2..c58ada4 100644
--- a/app/drivers/CMakeLists.txt
+++ b/app/drivers/CMakeLists.txt
@@ -1,6 +1,7 @@
# Copyright (c) 2020 The ZMK Contributors
# SPDX-License-Identifier: MIT
+add_subdirectory(gpio)
add_subdirectory(kscan)
add_subdirectory(sensor)
-add_subdirectory(display) \ No newline at end of file
+add_subdirectory(display)