-
Notifications
You must be signed in to change notification settings - Fork 2
/
platformio.ini
48 lines (34 loc) · 1.03 KB
/
platformio.ini
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
47
48
; 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
[env:esp32dev]
platform = espressif32
board = esp32-s3-devkitc-1
framework = arduino
monitor_speed = 115200
upload_speed = 1500000
board_build.arduino.memory_type = qio_opi
board_build.f_flash = 80000000L
board_build.flash_mode = qio
board_upload.flash_size = 16MB
build_flags =
;-DAPP_VERSION_MAJOR=1
;-DAPP_VERSION_MINOR=0
;-DAPP_VERSION_PATCH=0
-DESP32S3
-DBOARD_HAS_PSRAM
;-DARDUINO_USB_CDC_ON_BOOT ;Re enabled Serial output on the usbC port (thanks SMEAC !!)
-mfix-esp32-psram-cache-issue
-D LV_LVGL_H_INCLUDE_SIMPLE
-D LV_CONF_INCLUDE_SIMPLE
-I./include
-I./src/squareline
lib_deps =
lovyan03/LovyanGFX@^0.4.18
lvgl/lvgl@8.3.6