File tree Expand file tree Collapse file tree 10 files changed +34
-4
lines changed Expand file tree Collapse file tree 10 files changed +34
-4
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,8 @@ sdkconfig.lobo
2626BUILD
2727PBUILD
2828build /
29+ cmake-build-debug /
30+ .idea /
2931temp /
3032local /
3133* .dis
Original file line number Diff line number Diff line change 1+ # The following lines of boilerplate have to be in your project's
2+ # CMakeLists in this exact order for cmake to work correctly
3+ cmake_minimum_required (VERSION 3.5)
4+
5+ #set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} --save-temps")
6+ include ($ENV{IDF_PATH} /tools/cmake/project.cmake)
7+ project (tft_demo)
Original file line number Diff line number Diff line change 1+ set (COMPONENT_SRCDIRS "" )
2+ set (COMPONENT_ADD_INCLUDEDIRS "" )
3+ register_component()
Original file line number Diff line number Diff line change 1+ set (COMPONENT_SRCDIRS "." )
2+ set (COMPONENT_ADD_INCLUDEDIRS "." )
3+ register_component()
Original file line number Diff line number Diff line change 1+ set (COMPONENT_SRCDIRS "." )
2+ set (COMPONENT_ADD_INCLUDEDIRS "." )
3+ #set(COMPONENT_PRIV_INCLUDEDIRS "")
4+ set (COMPONENT_PRIV_REQUIRES spi_flash)
5+ register_component()
Original file line number Diff line number Diff line change 1+ set (COMPONENT_SRCDIRS "" )
2+ set (COMPONENT_ADD_INCLUDEDIRS "" )
3+ register_component()
Original file line number Diff line number Diff line change 1+ set (COMPONENT_SRCDIRS "." )
2+ set (COMPONENT_ADD_INCLUDEDIRS "." )
3+ set (COMPONENT_PRIV_REQUIRES spidriver)
4+ register_component()
Original file line number Diff line number Diff line change 1+ set (COMPONENT_SRCDIRS "." )
2+ set (COMPONENT_ADD_INCLUDEDIRS "." )
3+ register_component()
Original file line number Diff line number Diff line change 11menu "TFT Display DEMO Configuration"
22
33config SPIFFS_BASE_ADDR
4- hex "SPIFFS Base address"
5- range 100000 1FFE000
6- default 180000
4+ int "SPIFFS Base address"
5+ range 1048576 33546240
6+ default 1572864
77 help
88 Starting address of the SPIFFS area in ESP32 Flash
99
@@ -36,7 +36,7 @@ config EXAMPLE_DISPLAY_TYPE
3636 default EXAMPLE_DISPLAY_TYPE0
3737 help
3838 Select predefined display configuration
39-
39+
4040 config EXAMPLE_DISPLAY_TYPE0
4141 bool "None"
4242 config EXAMPLE_DISPLAY_TYPE1
You can’t perform that action at this time.
0 commit comments