mirror of
https://gitlab.com/zwirbel/illucat.git
synced 2025-12-14 09:26:49 +01:00
159 lines
5.0 KiB
INI
159 lines
5.0 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 = platformio/espressif8266@2.3.2
|
|
board = esp12e
|
|
upload_speed = 115200
|
|
monitor_baud = 115200
|
|
lib_deps =
|
|
Hash
|
|
TaskScheduler
|
|
ArduinoJson@5.13.4
|
|
adafruit/Adafruit NeoPixel@1.7.0
|
|
me-no-dev/ESPAsyncTCP@1.2.0
|
|
me-no-dev/ESPAsyncWebServer@1.2.3
|
|
me-no-dev/AsyncTCP@1.1.1
|
|
ESP8266mDNS
|
|
;symlink://../../core
|
|
;symlink://../../plugins/neopixel
|
|
https://gitlab.com/wirelos/sprocket-lib.git#master
|
|
https://gitlab.com/wirelos/sprocket-plugin-neopixel.git#master
|
|
|
|
|
|
[env:esp01]
|
|
src_filter = +<*> -<var/> +<var/wifi/>
|
|
platform = ${common.platform}
|
|
board = esp01_1m
|
|
board_build.f_cpu = 80000000L
|
|
board_build.flash_mode = qio
|
|
board_build.filesystem = spiffs
|
|
board_build.ldscript = eagle.flash.1m256.ld
|
|
upload_speed = ${common.upload_speed}
|
|
monitor_baud = ${common.monitor_baud}
|
|
framework = ${common.framework}
|
|
build_flags = -Wl,-Teagle.flash.1m256.ld -DSPROCKET_PRINT=1
|
|
lib_deps = ${common.lib_deps}
|
|
;symlink://../../network/wifi
|
|
;symlink://../../plugins/web
|
|
https://gitlab.com/wirelos/sprocket-network-wifi.git#master
|
|
https://gitlab.com/wirelos/sprocket-plugin-web.git#master
|
|
|
|
|
|
;[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}
|
|
; symlink://../../network/wifi
|
|
; symlink://../../plugins/web
|
|
; ;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}
|
|
;symlink://../../network/wifi
|
|
;symlink://../../plugins/web
|
|
https://gitlab.com/wirelos/sprocket-network-wifi.git#master
|
|
https://gitlab.com/wirelos/sprocket-plugin-web.git#master
|
|
|
|
[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}
|
|
;symlink://../../network/wifi
|
|
;symlink://../../plugins/web
|
|
https://gitlab.com/wirelos/sprocket-network-wifi.git#master
|
|
https://gitlab.com/wirelos/sprocket-plugin-web.git#master
|
|
|
|
|
|
;[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}
|
|
; symlink://../../network/wifi
|
|
; symlink://../../plugins/web
|
|
; ;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
|
|
; |