forked from NorthernMan54/JC3248W535EN
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplatformio.ini
More file actions
51 lines (47 loc) · 1.33 KB
/
platformio.ini
File metadata and controls
51 lines (47 loc) · 1.33 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
47
48
49
50
51
; 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
;esp32-s3-devkitc-1-n16r8v
;esp32s3dev
[platformio]
description = LVGL-320-480
default_envs = LVGL-320-480
boards_dir = boards
data_dir = littlefs
lib_dir = libraries
src_dir = src
[libraries]
[com]
platform = espressif32@6.6.0
board = esp32s3dev
monitor_filters = esp32_exception_decoder
monitor_port = COM3
monitor_speed =115200
framework = espidf
build_type = debug
board_build.filesystem = littlefs
board_build.partitions = default_16MB.csv
debug_build_flags = -Os # optimize for size
build_flags =
-D LOG_LOCAL_LEVEL=ESP_LOG_VERBOSE
lib_deps =
[env:LVGL-320-480]
platform = ${com.platform}
board = 320x480
monitor_filters = ${com.monitor_filters}
monitor_port = ${com.monitor_port}
monitor_speed = ${com.monitor_speed}
framework = ${com.framework}
build_type = ${com.build_type}
board_build.filesystem = ${com.board_build.filesystem}
board_build.partitions = ${com.board_build.partitions}
lib_deps =
build_flags =
${com.build_flags}
-D LV_CONF_PATH="${PROJECT_DIR}/src/lv_conf.h"