-
Notifications
You must be signed in to change notification settings - Fork 0
/
platformio.ini
57 lines (53 loc) · 1.65 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
; 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 @ 6.5.0
board = node32s
framework = arduino
monitor_speed = 115200
monitor_filters = esp32_exception_decoder
board_build.partitions = min_spiffs.csv
lib_deps =
asukiaaa/XboxSeriesXControllerESP32_asukiaaa@^1.0.9
vincasmiliunas/TB6612FNG@^1.0.2
https://github.com/benpeart/mpu6050
https://github.com/benpeart/Arduino-PID-Library
me-no-dev/AsyncTCP@^1.1.1
https://github.com/khoih-prog/ESPAsyncWebServer
links2004/WebSockets@^2.4.1
alanswx/ESPAsyncWiFiManager@^0.31
ayushsharma82/ElegantOTA@^3.1.0
[env:release]
build_type = release
build_flags =
-fpermissive
-D ELEGANTOTA_USE_ASYNC_WEBSERVER=1
[env:debug]
build_type = debug
monitor_filters = esp32_exception_decoder
build_flags =
-fpermissive
-D ELEGANTOTA_USE_ASYNC_WEBSERVER=1
-D DEBUG
[env:JTAG]
build_type = debug
debug_tool = esp-prog
upload_protocol = esp-prog
debug_init_break = tbreak setup
;debug_speed = 1000 ; default is 20000 kHz
; The debug_build_flags line below causes the error: undefined reference to `vtable for fs::FileImpl'
; https://github.com/platformio/platform-espressif32/issues/1238
;debug_build_flags = -O0 -g -ggdb
monitor_filters = esp32_exception_decoder
build_flags =
-fpermissive
-D ELEGANTOTA_USE_ASYNC_WEBSERVER=1
-D DEBUG
-D JTAG