diff options
Diffstat (limited to 'platformio.ini')
-rw-r--r-- | platformio.ini | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/platformio.ini b/platformio.ini new file mode 100644 index 0000000..6de3f31 --- /dev/null +++ b/platformio.ini @@ -0,0 +1,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 |