Update GPIO driver usage (#23)

Recently the SDK removed GPIO functionality because pins are now exclusively claimed by a driver. That means the GPIO app can't claim pins that are already in use... except when it calls the ESP-IDF driver code directly, which is what the app now does.
This commit is contained in:
Ken Van Hoeylandt
2026-02-12 08:35:12 +01:00
committed by GitHub
parent 1955cda81b
commit 9ba1d460bd
3 changed files with 8 additions and 9 deletions
+1 -1
View File
@@ -7,6 +7,6 @@ idf_component_register(
# Library headers must be included directly,
# because all regular dependencies get stripped by elf_loader's cmake script
INCLUDE_DIRS ../../../Libraries/TactilityCpp/Include
REQUIRES TactilitySDK
REQUIRES TactilitySDK driver
)