lib update: initial PIComputer support

This commit is contained in:
mverch67 2024-06-20 23:07:46 +02:00
parent d973d309d5
commit 963c109d4d
2 changed files with 44 additions and 1 deletions

@ -1 +1 @@
Subproject commit f77a76df31856a05c87c90902256c6c087b25971
Subproject commit 034909a492905c3db016128bb677f107d960c390

View File

@ -15,3 +15,46 @@ build_flags =
lib_deps =
${esp32s3_base.lib_deps}
lovyan03/LovyanGFX@^1.1.8
[env:picomputer-s3-tft]
extends = esp32s3_base
board = bpi_picow_esp32_s3
board_build.partitions = default_8MB.csv ; just for test
;board_check = true
upload_protocol = esptool
build_flags = ${esp32_base.build_flags}
-D PICOMPUTER_S3
-D MESHTASTIC_EXCLUDE_CANNEDMESSAGES=1
-D MESHTASTIC_EXCLUDE_INPUTBROKER=1
-D MAX_NUM_NODES=250
-D MAX_THREADS=40
-D HAS_SCREEN=0
-D HAS_TFT=1
-D USE_I2S_BUZZER
-D RAM_SIZE=1024
-D LV_LVGL_H_INCLUDE_SIMPLE
-D LV_CONF_INCLUDE_SIMPLE
-D LV_COMP_CONF_INCLUDE_SIMPLE
-D LV_USE_SYSMON=0
-D LV_USE_PROFILER=0
-D LV_USE_PERF_MONITOR=1
-D LV_USE_MEM_MONITOR=1
-D LV_USE_LOG=1
-D USE_LOG_DEBUG
-D LOG_DEBUG_INC=\"DebugConfiguration.h\"
; -D CALIBRATE_TOUCH=0
-D LGFX_DRIVER=LGFX_PICOMPUTER_S3
-D VIEW_320x240
; -D USE_DOUBLE_BUFFER
-D USE_PACKET_API
-I lib/device-ui/generated/ui_320x240
-I variants/picomputer-s3
build_src_filter = ${esp32_base.build_src_filter}
+<../lib/device-ui/generated/ui_320x240>
+<../lib/device-ui/resources>
+<../lib/device-ui/locale>
+<../lib/device-ui/source>
lib_deps =
${esp32_base.lib_deps}
lovyan03/LovyanGFX@^1.1.12