-
Notifications
You must be signed in to change notification settings - Fork 1
/
platformio.ini
53 lines (40 loc) · 1.21 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
; 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
upload_speed = 921600
monitor_speed = 115200
monitor_rts = 0
monitor_dtr = 0
build_flags =
'-D FIRMWARE_VERSION="0.0.1a"'
-D VERBOSE
'-DU_CFG_ENABLE_LOGGING=0'
-D CORE_DEBUG_LEVEL=3
-I include # include folder set globally
board_build.partitions = min_spiffs.csv
; build_type = debug
; monitor_filters = esp32_exception_decoder
lib_ldf_mode = deep
lib_deps =
bblanchon/ArduinoJson @ 6.19.4
me-no-dev/AsyncTCP @ 1.1.1
https://github.com/me-no-dev/ESPAsyncWebServer.git#f71e3d427b5be9791a8a2c93cf8079792c3a9a26
https://github.com/ldab/ubxlib.git#platformIO_support
[env:mower]
; build_src_filter = +<mower.cpp> -<base.cpp>
debug_tool = esp-prog
upload_port = COM37
monitor_port = COM37
lib_deps=
${env.lib_deps}