-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplatformio.ini
54 lines (48 loc) · 1.39 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
49
50
51
52
53
54
; 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 = LVGL-320-480
default_envs = LVGL-320-480
boards_dir = boards
data_dir = littlefs
lib_dir = libraries
src_dir = src
[libraries]
;tinyusb = espressif/esp_tinyusb@^1.4.5
[com]
platform = [email protected]
board = esp32s3dev
platform_packages =
framework-espidf
monitor_filters = esp32_exception_decoder
framework = espidf
build_type = debug
board_build.filesystem = littlefs
board_build.partitions = partitions/default_16MB.csv
build_flags =
-D LOG_LOCAL_LEVEL=ESP_LOG_VERBOSE
[env:LVGL-320-480]
platform = ${com.platform}
platform_packages = ${com.platform_packages}
board = 320x480
monitor_filters = ${com.monitor_filters}
framework = ${com.framework}
build_type = ${com.build_type}
board_build.filesystem = ${com.board_build.filesystem}
board_build.partitions = ${com.board_build.partitions}
;lib_deps = ${libraries.tinyusb}
build_flags =
${com.build_flags}
-D LV_CONF_PATH='${PROJECT_DIR}/src/lv_conf.h'
extra_scripts =
pre:utils/write-version.py
utils/merge-bin.py
monitor_speed = 115200
upload_speed = 921600