-
Notifications
You must be signed in to change notification settings - Fork 4
/
platformio.ini
117 lines (108 loc) · 2.46 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
; 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 = espressif32
framework = arduino
monitor_speed = 115200
lib_deps =
arduino-libraries/Arduino_DebugUtils@^1.4.0
build_src_filter =
-<.git/>
+<BLE/>
+<Camera/>
+<CCU/>
+<Config/>
+<ESP32/>
+<Images/>
+<main/main-${PIOENV}.cpp>
[env:lilygo-t-display-s3]
platform = espressif32
board = lilygo-t-display-s3
framework = arduino
lib_deps =
${env.lib_deps}
bodmer/TFT_eSPI@^2.5.23
mathertel/OneButton@^2.0.3
build_src_filter =
${env.build_src_filter}
+<BLE_TFT_eSPI/>
[env:m5stick-c]
platform = espressif32
board = m5stick-c
board_build.partitions = huge_app.csv
lib_deps =
${env.lib_deps}
m5stack/M5StickCPlus@^0.0.8
[env:esp32-s3-devkitc-1]
platform = espressif32
board = esp32-s3-devkitc-1
lib_deps =
${env.lib_deps}
[env:m5stack-cores3-mpc]
platform = espressif32
board = esp32-s3-devkitc-1
framework = arduino
upload_speed = 1500000
monitor_speed = 115200
board_build.f_cpu = 240000000L
board_build.f_flash = 80000000L
board_build.flash_mode = qio
board_build.flash_size = 16MB
board_build.partitions = ./src/Boards/M5CoreS3/partitions_ffat.csv
build_flags =
-std=c++11
-DBOARD_HAS_PSRAM
-DCORE_DEBUG_LEVEL=3
-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 =
${env.lib_deps}
m5stack/M5GFX@^0.1.7
lvgl/lvgl@^8.3.7
build_src_filter =
${env.build_src_filter}
+<Boards/M5CoreS3/>
+<BLE_M5GFX/>
+<Fonts/>
[env:m5stack-grey]
platform = espressif32
board = m5stack-grey
board_build.partitions = huge_app.csv
build_flags =
-std=c++11
-DCORE_DEBUG_LEVEL=0
lib_deps =
${env.lib_deps}
tobozo/ESP32-Chimera-Core @ ^1.4.9
build_src_filter =
${env.build_src_filter}
+<BLE_M5GREY/>
+<Fonts/>
; Accepts commands through TouchDesigner - serial connection
[env:m5stack-grey-touchdesigner]
platform = espressif32
board = m5stack-grey
board_build.partitions = huge_app.csv
build_flags =
-std=c++11
-DCORE_DEBUG_LEVEL=0
lib_deps =
${env.lib_deps}
tobozo/ESP32-Chimera-Core @ ^1.4.9
build_src_filter =
${env.build_src_filter}
+<BLE_M5GREY/>
+<Fonts/>
platform_packages =
tool-esptoolpy @ ~1.40300.0