vault / meshtastic-firmware / v1.2.50.41dcfdd
meshtastic-firmware @ v1.2.50.41dcfdd
integrity
- size
- 508.6 KiB
- downloaded
- last checked
- detected
- raw version: universal archives only
release notes
What's Changed
- Remove BATTERY_PIN from tlora v1 target by @thebentern in https://github.com/meshtastic/Meshtastic-device/pull/996
- Updated formula for position plugin & Improve time to generate the SSL certificate by @mc-hamster in https://github.com/meshtastic/Meshtastic-device/pull/995
- Overridden default pin to use for Ext Notify Plugin (#975) by @osmanovv in https://github.com/meshtastic/Meshtastic-device/pull/999
- Fix for "Creating SSL certificate" screen when there's no display by @mc-hamster in https://github.com/meshtastic/Meshtastic-device/pull/1005
- Show fixed position indicator on screen & show fixed position indicator on screen by @mc-hamster in https://github.com/meshtastic/Meshtastic-device/pull/1008
- Nimble lib swap by @thebentern in https://github.com/meshtastic/Meshtastic-device/pull/1009
- S&F - Describe if the message is real time or delayed in MeshPacket by @mc-hamster in https://github.com/meshtastic/Meshtastic-device/pull/978
- Update to show fixed gps alternating with location info by @mc-hamster in https://github.com/meshtastic/Meshtastic-device/pull/1012
- add T-Echo backlight trigger by @andrekir in https://github.com/meshtastic/Meshtastic-device/pull/1010
- Fix for SoftAP bugs by @mc-hamster in https://github.com/meshtastic/Meshtastic-device/pull/1020
- Cleanup comments by @mc-hamster in https://github.com/meshtastic/Meshtastic-device/pull/1022
- Add mqtt_username and mqtt_password user preferences by @joshpirihi in https://github.com/meshtastic/Meshtastic-device/pull/1018
- Apply formatting to wifi related sections by @mc-hamster in https://github.com/meshtastic/Meshtastic-device/pull/1026
- S&F - Add support for secondary channels that don't have their own PSK & Update broadcast address to NODENUM_BROADCAST by @mc-hamster in https://github.com/meshtastic/Meshtastic-device/pull/1027
- Support for MeshPacket_Delayed_DELAYED_BROADCAST by @mc-hamster in https://github.com/meshtastic/Meshtastic-device/pull/1030
- CI/CD for building on GitLab instance by @caveman99 in https://github.com/meshtastic/Meshtastic-device/pull/1028
- Update device-install.sh by @PlumRugOfDoom in https://github.com/meshtastic/Meshtastic-device/pull/1029
- Ham, not HAM by @linagee in https://github.com/meshtastic/Meshtastic-device/pull/1031
- Experimental change to getMacAddr behavior by @thebentern in https://github.com/meshtastic/Meshtastic-device/pull/1017
- Remove networking operations from presentation layer by @thebentern in https://github.com/meshtastic/Meshtastic-device/pull/1033
- Removed radio config that shouldn't be there. by @mc-hamster in https://github.com/meshtastic/Meshtastic-device/pull/1036
- Report on channel utilization on the screen and myNodeInfo by @mc-hamster in https://github.com/meshtastic/Meshtastic-device/pull/1037
- Delete build-nightly.sh - nightly build server has been decommissioned by @mc-hamster in https://github.com/meshtastic/Meshtastic-device/pull/1038
- Support for replies and tap backs by @mc-hamster in https://github.com/meshtastic/Meshtastic-device/pull/1041
New Contributors
- @andrekir made their first contribution in https://github.com/meshtastic/Meshtastic-device/pull/1010
- @caveman99 made their first contribution in https://github.com/meshtastic/Meshtastic-device/pull/1028
- @PlumRugOfDoom made their first contribution in https://github.com/meshtastic/Meshtastic-device/pull/1029
- @linagee made their first contribution in https://github.com/meshtastic/Meshtastic-device/pull/1031
download
unix · zip
curl -fL -o v1.2.50.41dcfdd.zip https://ratatoskr.space/pkg/meshtastic-firmware/v1.2.50.41dcfdd.zip
printf '%s %s\n' '24719537202c9d00cb2e628eede5dc9faf2a6f9cc079e754d86947dcd7ea1cff' 'v1.2.50.41dcfdd.zip' | sha256sum -c -
windows · zip
$url = "https://ratatoskr.space/pkg/meshtastic-firmware/v1.2.50.41dcfdd.zip"
$out = "v1.2.50.41dcfdd.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "24719537202c9d00cb2e628eede5dc9faf2a6f9cc079e754d86947dcd7ea1cff") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v1.2.50.41dcfdd.tar.gz https://ratatoskr.space/pkg/meshtastic-firmware/v1.2.50.41dcfdd.tar.gz
printf '%s %s\n' 'b93f979a2d93bf53a23bfdfc2a1dc22c6dbe631a8ce71b8ffd021c4f9083aa37' 'v1.2.50.41dcfdd.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "https://ratatoskr.space/pkg/meshtastic-firmware/v1.2.50.41dcfdd.tar.gz"
$out = "v1.2.50.41dcfdd.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "b93f979a2d93bf53a23bfdfc2a1dc22c6dbe631a8ce71b8ffd021c4f9083aa37") { throw "sha256 mismatch" }
download via yggdrasil mesh
unix · zip
curl -fL -o v1.2.50.41dcfdd.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meshtastic-firmware/v1.2.50.41dcfdd.zip
printf '%s %s\n' '24719537202c9d00cb2e628eede5dc9faf2a6f9cc079e754d86947dcd7ea1cff' 'v1.2.50.41dcfdd.zip' | sha256sum -c -
windows · zip
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meshtastic-firmware/v1.2.50.41dcfdd.zip"
$out = "v1.2.50.41dcfdd.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "24719537202c9d00cb2e628eede5dc9faf2a6f9cc079e754d86947dcd7ea1cff") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v1.2.50.41dcfdd.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meshtastic-firmware/v1.2.50.41dcfdd.tar.gz
printf '%s %s\n' 'b93f979a2d93bf53a23bfdfc2a1dc22c6dbe631a8ce71b8ffd021c4f9083aa37' 'v1.2.50.41dcfdd.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meshtastic-firmware/v1.2.50.41dcfdd.tar.gz"
$out = "v1.2.50.41dcfdd.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "b93f979a2d93bf53a23bfdfc2a1dc22c6dbe631a8ce71b8ffd021c4f9083aa37") { throw "sha256 mismatch" }
| artifact | format | size | hashes |
|---|---|---|---|
| v1.2.50.41dcfdd.zip | zip | 515.9 KiB |
blake3-24 a701f08e2a2a2135b6efae2fc1a28dd3115f8708a3e39e23
sha256 24719537202c9d00cb2e628eede5dc9faf2a6f9cc079e754d86947dcd7ea1cff
sha1 9759d77cd15b11cfc6ba93dabf11e55dec6d9678
|
| v1.2.50.41dcfdd.tar.gz | tar.gz | 352.7 KiB |
blake3-24 12b82509453749bf691273c7c6c87cac902b0d6e8a64961d
sha256 b93f979a2d93bf53a23bfdfc2a1dc22c6dbe631a8ce71b8ffd021c4f9083aa37
sha1 5448aebeecdad0e27675f2b1905ecc9248486c57
|
install
bazel
http_archive(
name = "meshtastic-firmware",
urls = ["https://ratatoskr.space/pkg/meshtastic-firmware/v1.2.50.41dcfdd.tar.gz"],
integrity = "sha256-uT+Xmi2Tv1OiO/38Kh3CLG2+YxqM5xuP/QIcT5CDqjc=",
strip_prefix = "meshtastic-firmware-v1.2.50.41dcfdd",
)
zig
.url = "https://ratatoskr.space/pkg/meshtastic-firmware/v1.2.50.41dcfdd.tar.gz",
install via yggdrasil mesh
bazel
http_archive(
name = "meshtastic-firmware",
urls = ["http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meshtastic-firmware/v1.2.50.41dcfdd.tar.gz"],
integrity = "sha256-uT+Xmi2Tv1OiO/38Kh3CLG2+YxqM5xuP/QIcT5CDqjc=",
strip_prefix = "meshtastic-firmware-v1.2.50.41dcfdd",
)
zig
.url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meshtastic-firmware/v1.2.50.41dcfdd.tar.gz",