-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathplatformio.ini
48 lines (45 loc) · 1.15 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]
platform = [email protected]
board = esp32-s3-devkitc-1
framework = arduino
board_build.f_cpu = 240000000L
board_build.f_flash = 80000000L
board_build.flash_mode = qio
board_build.flash_size = 16MB
board_build.partitions = ./partitions_ffat.csv
; platform_packages =
; platformio/framework-arduinoespressif32@^3.20007.0
build_flags =
-std=c++11
-DBOARD_HAS_PSRAM
-DCORE_DEBUG_LEVEL=0
-Iinclude
-DLV_CONF_INCLUDE_SIMPLE
-DLV_LVGL_H_INCLUDE_SIMPLE
-DLCD_HEIGHT=240
-DLCD_WIDTH=320
-DLV_TICK_PERIOD_MS=10
-DMONKEY_TEST_ENABLE=0
lib_deps =
m5stack/M5GFX@^0.1.6
m5stack/M5Unified@^0.1.6
lvgl/lvgl@^8.3.4
espressif/esp32-camera@^2.0.0
arduino-libraries/Madgwick@^1.2.0
[env:M5CoreS3]
build_flags =
${env.build_flags}
-DM5CORES3
[env:M5CoreS3SE]
build_flags =
${env.build_flags}
-DM5CORES3SE