Added Lilygo T-Deck support & more (#4)
* added lilygo t-deck restructured boards implemented HardwareConfig implemented lilygo t-deck lcd and touch drivers added sdkconfig defaults for supported boards * cleanup * added esp32s3 job * build job names updated * wip * partial revert * update readme and build.yml * updated build.yaml with fix for quotes * use esp-idf 5.1.2 * improvements and fixes * fixes for display code * made config const * various improvements
This commit is contained in:
committed by
GitHub
parent
eed990217f
commit
8336316133
+13
-1
@@ -1,5 +1,17 @@
|
||||
# Yellow Board only runs on ESP32
|
||||
set(project_components nanobake)
|
||||
|
||||
if("${IDF_TARGET}" STREQUAL "esp32")
|
||||
list(APPEND project_components yellow_board)
|
||||
endif()
|
||||
|
||||
# T-Deck is an S3 platform
|
||||
if("${IDF_TARGET}" STREQUAL "esp32s3")
|
||||
list(APPEND project_components lilygo_tdeck)
|
||||
endif()
|
||||
|
||||
idf_component_register(
|
||||
SRC_DIRS "src"
|
||||
"src/hello_world"
|
||||
REQUIRES nanobake board_2432s024
|
||||
REQUIRES ${project_components}
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user