mirror of
https://gitlab.com/zwirbel/illucat.git
synced 2025-12-15 01:42:22 +01:00
pin versions
This commit is contained in:
171
platformio.ini
171
platformio.ini
@@ -13,36 +13,60 @@ env_default = build
|
||||
|
||||
[common]
|
||||
framework = arduino
|
||||
platform = espressif8266@2.0.4
|
||||
platform = platformio/espressif8266@2.3.2
|
||||
board = esp12e
|
||||
upload_speed = 921600
|
||||
upload_speed = 115200
|
||||
monitor_baud = 115200
|
||||
lib_deps =
|
||||
Hash
|
||||
TaskScheduler
|
||||
SPIFFS
|
||||
;SPIFFS
|
||||
ArduinoJson@5.13.4
|
||||
Adafruit NeoPixel@1.8.0
|
||||
ESPAsyncTCP
|
||||
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
|
||||
ESP Async WebServer
|
||||
https://gitlab.com/wirelos/sprocket-lib.git#develop
|
||||
https://gitlab.com/wirelos/sprocket-plugin-neopixel.git
|
||||
symlink://../../core
|
||||
symlink://../../plugins/neopixel
|
||||
;https://gitlab.com/wirelos/sprocket-lib.git#develop
|
||||
;https://gitlab.com/wirelos/sprocket-plugin-neopixel.git
|
||||
|
||||
|
||||
[env:build-esp32]
|
||||
platform = espressif32
|
||||
board = esp32dev
|
||||
[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 = -DSPROCKET_PRINT=1
|
||||
build_flags = -Wl,-Teagle.flash.1m256.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
|
||||
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-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}
|
||||
@@ -53,22 +77,10 @@ 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
|
||||
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:release]
|
||||
src_filter = +<*> -<var/> +<var/wifi/>
|
||||
@@ -80,38 +92,69 @@ 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
|
||||
;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: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
|
||||
|
||||
;[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
|
||||
;
|
||||
Reference in New Issue
Block a user