mirror of
https://gitlab.com/zwirbel/illucat.git
synced 2025-12-14 17:35:22 +01:00
118 lines
3.5 KiB
INI
118 lines
3.5 KiB
INI
; 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
|
|
; http://docs.platformio.org/page/projectconf.html
|
|
|
|
[platformio]
|
|
env_default = build
|
|
|
|
[common]
|
|
framework = arduino
|
|
platform = espressif8266@2.0.4
|
|
board = esp12e
|
|
upload_speed = 921600
|
|
monitor_baud = 115200
|
|
lib_deps =
|
|
Hash
|
|
TaskScheduler
|
|
SPIFFS
|
|
ArduinoJson@5.13.4
|
|
Adafruit NeoPixel@1.8.0
|
|
ESPAsyncTCP
|
|
ESP8266mDNS
|
|
ESP Async WebServer
|
|
https://gitlab.com/wirelos/sprocket-lib.git#develop
|
|
https://gitlab.com/wirelos/sprocket-plugin-neopixel.git
|
|
|
|
|
|
[env:build-esp32]
|
|
platform = espressif32
|
|
board = esp32dev
|
|
src_filter = +<*> -<var/> +<var/wifi/>
|
|
upload_speed = ${common.upload_speed}
|
|
monitor_baud = ${common.monitor_baud}
|
|
framework = ${common.framework}
|
|
build_flags = -DSPROCKET_PRINT=1
|
|
lib_deps = ${common.lib_deps}
|
|
https://gitlab.com/wirelos/sprocket-network-wifi.git#next
|
|
https://gitlab.com/wirelos/sprocket-plugin-web.git#next
|
|
|
|
|
|
[env:build]
|
|
src_filter = +<*> -<var/> +<var/wifi/>
|
|
platform = ${common.platform}
|
|
board = ${common.board}
|
|
upload_speed = ${common.upload_speed}
|
|
monitor_baud = ${common.monitor_baud}
|
|
framework = ${common.framework}
|
|
build_flags = -Wl,-Teagle.flash.4m1m.ld
|
|
-DSPROCKET_PRINT=1
|
|
lib_deps = ${common.lib_deps}
|
|
https://gitlab.com/wirelos/sprocket-network-wifi.git#next
|
|
https://gitlab.com/wirelos/sprocket-plugin-web.git#next
|
|
|
|
|
|
[env:build-mesh]
|
|
src_filter = +<*> -<var/> +<var/wifiMesh/>
|
|
platform = ${common.platform}
|
|
board = ${common.board}
|
|
upload_speed = ${common.upload_speed}
|
|
monitor_baud = ${common.monitor_baud}
|
|
framework = ${common.framework}
|
|
build_flags = -Wl,-Teagle.flash.4m1m.ld
|
|
-DSPROCKET_PRINT=1
|
|
lib_deps = ${common.lib_deps}
|
|
https://gitlab.com/wirelos/painlessMesh.git
|
|
https://gitlab.com/wirelos/sprocket-network-mesh.git#forked-mesh
|
|
|
|
[env:release]
|
|
src_filter = +<*> -<var/> +<var/wifi/>
|
|
platform = ${common.platform}
|
|
board = ${common.board}
|
|
upload_speed = ${common.upload_speed}
|
|
monitor_baud = ${common.monitor_baud}
|
|
framework = ${common.framework}
|
|
build_flags = -Wl,-Teagle.flash.4m1m.ld
|
|
-DSPROCKET_PRINT=0
|
|
lib_deps = ${common.lib_deps}
|
|
https://gitlab.com/wirelos/sprocket-network-wifi.git#next
|
|
https://gitlab.com/wirelos/sprocket-plugin-web.git#next
|
|
|
|
|
|
[env:mqcatt]
|
|
src_filter = +<*> -<var/> +<var/mqcatt/>
|
|
platform = ${common.platform}
|
|
board = ${common.board}
|
|
upload_speed = ${common.upload_speed}
|
|
monitor_baud = ${common.monitor_baud}
|
|
framework = ${common.framework}
|
|
build_flags = -Wl,-Teagle.flash.4m1m.ld
|
|
-DSPROCKET_PRINT=1
|
|
lib_deps = ${common.lib_deps}
|
|
https://gitlab.com/wirelos/sprocket-network-wifi.git#next
|
|
https://gitlab.com/wirelos/sprocket-plugin-web.git#next
|
|
https://gitlab.com/wirelos/sprocket-plugin-mqtt.git#next
|
|
PubSubClient
|
|
|
|
[env:illuchat]
|
|
src_filter = +<*> -<var/> +<var/illuchat/>
|
|
platform = ${common.platform}
|
|
board = ${common.board}
|
|
upload_speed = ${common.upload_speed}
|
|
monitor_baud = ${common.monitor_baud}
|
|
framework = ${common.framework}
|
|
build_flags = -Wl,-Teagle.flash.4m1m.ld
|
|
-DSPROCKET_PRINT=1
|
|
lib_deps = ${common.lib_deps}
|
|
https://gitlab.com/wirelos/sprocket-network-wifi.git#next
|
|
https://gitlab.com/wirelos/sprocket-plugin-web.git#next
|
|
https://gitlab.com/wirelos/sprocket-plugin-irc.git
|
|
https://gitlab.com/wirelos/sprocket-plugin-mqtt.git#next
|
|
PubSubClient
|
|
ArduinoIRC
|