blob: 6de3f31eb653b00858eedd5bcb32190e2823b0ad (
plain)
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
|
; 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:esp32dev]
platform = espressif32
board = pico32
; board = esp32dev
framework = arduino
lib_deps =
sqfmi/Watchy @ 1.4.1 ; Pinned version to ensure we don't pull broken code
https://github.com/tzapu/WiFiManager.git#v2.0.11-beta ; Pinned for the same reason
lib_ldf_mode = deep+
board_build.partitions = min_spiffs.csv
; upload_speed = 3000000
upload_port = /dev/ttyUSB0
monitor_port = /dev/ttyUSB0
; monitor_speed = 115200
monitor_speed = 921600
monitor_filters = esp32_exception_decoder
board_build.f_cpu = 240000000L
board_build.f_flash = 80000000L
build_flags = -DCORE_DEBUG_LEVEL=0
|