-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplatformio.ini
More file actions
61 lines (55 loc) · 1.04 KB
/
platformio.ini
File metadata and controls
61 lines (55 loc) · 1.04 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
52
53
54
55
56
57
58
59
60
61
[platformio]
src_dir = src
; src_dir = mp3
default_envs = debug
[env]
platform = espressif32@^6.11.0
framework = arduino
monitor_speed = 115200
check_tool = clangtidy
check_skip_packages = yes
[base]
board = esp32dev
build_flags =
${env.build_flags}
-mfix-esp32-psram-cache-issue
-DBOARD_HAS_PSRAM
-DLILYGO_T_CALL_A7670_V1_0
monitor_filters =
default
esp32_exception_decoder
lib_deps =
https://github.com/lewisxhe/TinyGSM-fork.git#cf5c438286666e91c03762bac1825a05d1bf844a
tzapu/WiFiManager@^2.0.17
[env:debug]
build_type = debug
extends = base
build_flags =
${base.build_flags}
-O0
-g3
-fno-omit-frame-pointer
-DDEBUG
-Wall
-Wextra
-Wno-format-truncation
[env:debugWebSerial]
extends = env:debug
build_flags =
${env:debug.build_flags}
-DWEB_SERIAL
lib_deps =
${env:debug.lib_deps}
ayushsharma82/WebSerial@^2.1.1
ESP32Async/ESPAsyncWebServer@^3.7.8
ESP32Async/AsyncTCP@^3.4.4
[env:release]
extends = base
build_flags =
${base.build_flags}
-O2
-ffunction-sections
-fdata-sections
-Wl,--gc-sections
-fno-exceptions
-DNDEBUG