-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplatformio.ini
More file actions
46 lines (38 loc) · 1.25 KB
/
platformio.ini
File metadata and controls
46 lines (38 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
; PlatformIO Project Configuration File
;
; Build options: build flags, source filter
; Upload options: custom upload port, speed and extra flags
; Library options: dependencies, extra library storages
; Advanced options: extra scripting
;
; Please visit documentation for the other options and examples
; https://docs.platformio.org/page/projectconf.html
[platformio]
description = Robot-Core Mixology S3 UI
src_dir = display
include_dir = display
[env:ESP32S3-8048S043]
platform = https://github.com/Jason2866/platform-espressif32.git
board = esp32-s3-devkitc-1
framework = arduino
; Serial Monitor
monitor_speed = 115200
; CPU & Flash Frequency
board_build.f_cpu = 240000000L
board_build.f_flash = 80000000L
; Flash & PSRAM
board_build.arduino.partitions = default_16MB.csv
board_build.arduino.memory_type = qio_opi
board_upload.flash_size = 16MB
; Build Flags
build_flags =
-DBOARD_HAS_PSRAM
-DLV_CONF_INCLUDE_SIMPLE ; Required for LVGL to find lv_conf.h
-I display ; Add display directory to include path (where lv_conf.h and secrets.h are)
; -DCORE_DEBUG_LEVEL=5 ; Optional: Debug level
; Dependencies
lib_deps =
lvgl/lvgl @ ^9.1.0
tamctec/TAMC_GT911 @ ^1.0.2
; Source Filter
; src_filter = +<*> -<.git/> -<.svn/>