mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 19:03:16 +00:00
* initial changes for waveshare s3 touch support * fix lvgl locking * fix for lvgl locking * cleaned up dependencies * boards now depend on tactility instead of tactility-esp * revert deletion * remove component * working touch&display driver * added waveshare to github actions * cleanup * fix for driver * fix for sim build * build fixes * updated docs * updated docs * attempt new sdl2 github action * revert * fixes for clion/cmdline build environment wasn't parsed properly * temporarily disable pc sim build
17 lines
464 B
Plaintext
17 lines
464 B
Plaintext
# Kconfig file for Tactility example app
|
|
menu "Tactility App"
|
|
choice
|
|
prompt "Board"
|
|
default TT_BOARD_CUSTOM
|
|
|
|
config TT_BOARD_CUSTOM
|
|
bool "Custom"
|
|
config TT_BOARD_YELLOW_BOARD_24_CAP
|
|
bool "Yellow Board (2.4\" capacitive)"
|
|
config TT_BOARD_LILYGO_TDECK
|
|
bool "LilyGo T-Deck"
|
|
config TT_BOARD_WAVESHARE_S3_TOUCH
|
|
bool "Waveshare S3 Touch LCD 4.3\""
|
|
endchoice
|
|
endmenu
|