summaryrefslogtreecommitdiffstats
path: root/platformio.ini
diff options
context:
space:
mode:
authorsalaaad2 <arthurdurant263@gmail.com>2022-05-17 20:58:07 +0200
committersalaaad2 <arthurdurant263@gmail.com>2022-05-17 20:58:07 +0200
commitec8e4eb6320ddaabd71afbda12e93fbdab0d10d0 (patch)
treef9cf6bbdbdc512a258701ed2c0ea8c838d51a6c1 /platformio.ini
downloadwatchoom-ec8e4eb6320ddaabd71afbda12e93fbdab0d10d0.tar.gz
watchoom-ec8e4eb6320ddaabd71afbda12e93fbdab0d10d0.tar.bz2
watchoom-ec8e4eb6320ddaabd71afbda12e93fbdab0d10d0.tar.xz
watchoom-ec8e4eb6320ddaabd71afbda12e93fbdab0d10d0.tar.zst
watchoom-ec8e4eb6320ddaabd71afbda12e93fbdab0d10d0.zip
initial commit
Diffstat (limited to '')
-rw-r--r--platformio.ini30
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