Support for Waveshare S3 Touch LCD 4.3 (#18)
* 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
This commit is contained in:
committed by
GitHub
parent
ed2d0cc78a
commit
14eb43211d
+5
-2
@@ -2,11 +2,13 @@ cmake_minimum_required(VERSION 3.16)
|
||||
|
||||
add_definitions(-DTT_DEBUG)
|
||||
|
||||
if (ESP_PLATFORM)
|
||||
if (DEFINED ENV{ESP_IDF_VERSION})
|
||||
message("Building with ESP-IDF v$ENV{ESP_IDF_VERSION}")
|
||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||
|
||||
add_definitions(-DESP_TARGET)
|
||||
add_compile_definitions(ESP_TARGET)
|
||||
|
||||
set(COMPONENTS app-esp)
|
||||
set(EXTRA_COMPONENT_DIRS
|
||||
"boards"
|
||||
@@ -24,6 +26,7 @@ if (ESP_PLATFORM)
|
||||
# T-Deck is an S3 platform
|
||||
if(NOT "${IDF_TARGET}" STREQUAL "esp32s3")
|
||||
set(EXCLUDE_COMPONENTS "lilygo_tdeck")
|
||||
set(EXCLUDE_COMPONENTS "waveshare_s3_touch")
|
||||
endif()
|
||||
else()
|
||||
message("Building for sim target")
|
||||
@@ -35,7 +38,7 @@ add_subdirectory(libs/mlib)
|
||||
add_subdirectory(tactility)
|
||||
add_subdirectory(tactility-core)
|
||||
|
||||
if (NOT ESP_PLATFORM)
|
||||
if (NOT DEFINED ENV{ESP_IDF_VERSION})
|
||||
add_subdirectory(libs/freertos-kernel)
|
||||
target_include_directories(freertos-kernel
|
||||
PUBLIC app-sim/src # for FreeRTOSConfig.h
|
||||
|
||||
Reference in New Issue
Block a user