vault / meshtastic-firmware / 0.7.5
meshtastic-firmware @ 0.7.5
integrity
- size
- 12.9 MiB
- downloaded
- last checked
release notes
FINALLY! Fixed a super nasty bug in the bluetooth library code (that I didn't even realize was there). Any packets sent from phone to device had a fair chance of corruption if they were larger than 20 bytes. With recent longer packets in the 0.7.x tree this manifested as "mysterious loss of bluetooth comms".
Other fixes:
- Don't leak BLE handles (found while debugging the big bug)
- Fix out out packet errors if stress testing on big meshes
- Fix a hang that could occur (rarely) white trying to enter sleep
download
unix · zip
curl -fL -o 0.7.5.zip https://ratatoskr.space/pkg/meshtastic-firmware/0.7.5.zip
printf '%s %s\n' 'ceb1ca4c58e8fa196968c4f91717b876b8798902e89b969cd8fcf8165d792f1e' '0.7.5.zip' | sha256sum -c -
windows · zip
$url = "https://ratatoskr.space/pkg/meshtastic-firmware/0.7.5.zip"
$out = "0.7.5.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "ceb1ca4c58e8fa196968c4f91717b876b8798902e89b969cd8fcf8165d792f1e") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o 0.7.5.tar.gz https://ratatoskr.space/pkg/meshtastic-firmware/0.7.5.tar.gz
printf '%s %s\n' 'f225f99802d533a13d5c3d5494ab481ef2202043a8d50c6a1c69814d9004917f' '0.7.5.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "https://ratatoskr.space/pkg/meshtastic-firmware/0.7.5.tar.gz"
$out = "0.7.5.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "f225f99802d533a13d5c3d5494ab481ef2202043a8d50c6a1c69814d9004917f") { throw "sha256 mismatch" }
download via yggdrasil mesh
unix · zip
curl -fL -o 0.7.5.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meshtastic-firmware/0.7.5.zip
printf '%s %s\n' 'ceb1ca4c58e8fa196968c4f91717b876b8798902e89b969cd8fcf8165d792f1e' '0.7.5.zip' | sha256sum -c -
windows · zip
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meshtastic-firmware/0.7.5.zip"
$out = "0.7.5.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "ceb1ca4c58e8fa196968c4f91717b876b8798902e89b969cd8fcf8165d792f1e") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o 0.7.5.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meshtastic-firmware/0.7.5.tar.gz
printf '%s %s\n' 'f225f99802d533a13d5c3d5494ab481ef2202043a8d50c6a1c69814d9004917f' '0.7.5.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meshtastic-firmware/0.7.5.tar.gz"
$out = "0.7.5.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "f225f99802d533a13d5c3d5494ab481ef2202043a8d50c6a1c69814d9004917f") { throw "sha256 mismatch" }
| artifact | format | size | hashes |
|---|---|---|---|
| 0.7.5.zip | zip | 12.9 MiB |
blake3-24 2151ab73881c7a3708c9a5e5cd1780db075cb987c7334f00
sha256 ceb1ca4c58e8fa196968c4f91717b876b8798902e89b969cd8fcf8165d792f1e
sha1 c71f51da55a5467498c87663c985ce712771711e
|
| 0.7.5.tar.gz | tar.gz | 12.8 MiB |
blake3-24 d571586901485ec8c5891a41d9cf4799b3b6e7691e847769
sha256 f225f99802d533a13d5c3d5494ab481ef2202043a8d50c6a1c69814d9004917f
sha1 11026a470d2a49373b5bd41ddab1a4df5f7684c8
|
install
bazel
http_archive(
name = "meshtastic-firmware",
urls = ["https://ratatoskr.space/pkg/meshtastic-firmware/0.7.5.tar.gz"],
integrity = "sha256-8iX5mALVM6E9XD1UlKtIHvIgIEOo1QxqHGmBTZAEkX8=",
strip_prefix = "meshtastic-firmware-0.7.5",
)
zig
.url = "https://ratatoskr.space/pkg/meshtastic-firmware/0.7.5.tar.gz",
install via yggdrasil mesh
bazel
http_archive(
name = "meshtastic-firmware",
urls = ["http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meshtastic-firmware/0.7.5.tar.gz"],
integrity = "sha256-8iX5mALVM6E9XD1UlKtIHvIgIEOo1QxqHGmBTZAEkX8=",
strip_prefix = "meshtastic-firmware-0.7.5",
)
zig
.url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meshtastic-firmware/0.7.5.tar.gz",