vault / meshtastic-firmware / 0.6.3
meshtastic-firmware @ 0.6.3
integrity
- size
- 12.8 MiB
- downloaded
- last checked
release notes
A quick fix for the problem that everyone noticed ;-). Bluetooth receives were busted in 0.6.2.
download
unix · zip
curl -fL -o 0.6.3.zip https://ratatoskr.space/pkg/meshtastic-firmware/0.6.3.zip
printf '%s %s\n' '1da329a8366a09991735ea683934dec9688f1576f72f8e51e5206e7c7d77d8eb' '0.6.3.zip' | sha256sum -c -
windows · zip
$url = "https://ratatoskr.space/pkg/meshtastic-firmware/0.6.3.zip"
$out = "0.6.3.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "1da329a8366a09991735ea683934dec9688f1576f72f8e51e5206e7c7d77d8eb") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o 0.6.3.tar.gz https://ratatoskr.space/pkg/meshtastic-firmware/0.6.3.tar.gz
printf '%s %s\n' '090334718064e99295cd1edda796fe1b25dc531cb2934b7138cebd08b0046c34' '0.6.3.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "https://ratatoskr.space/pkg/meshtastic-firmware/0.6.3.tar.gz"
$out = "0.6.3.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "090334718064e99295cd1edda796fe1b25dc531cb2934b7138cebd08b0046c34") { throw "sha256 mismatch" }
download via yggdrasil mesh
unix · zip
curl -fL -o 0.6.3.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meshtastic-firmware/0.6.3.zip
printf '%s %s\n' '1da329a8366a09991735ea683934dec9688f1576f72f8e51e5206e7c7d77d8eb' '0.6.3.zip' | sha256sum -c -
windows · zip
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meshtastic-firmware/0.6.3.zip"
$out = "0.6.3.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "1da329a8366a09991735ea683934dec9688f1576f72f8e51e5206e7c7d77d8eb") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o 0.6.3.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meshtastic-firmware/0.6.3.tar.gz
printf '%s %s\n' '090334718064e99295cd1edda796fe1b25dc531cb2934b7138cebd08b0046c34' '0.6.3.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meshtastic-firmware/0.6.3.tar.gz"
$out = "0.6.3.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "090334718064e99295cd1edda796fe1b25dc531cb2934b7138cebd08b0046c34") { throw "sha256 mismatch" }
| artifact | format | size | hashes |
|---|---|---|---|
| 0.6.3.zip | zip | 12.8 MiB |
blake3-24 ef3b733bf42561a540bc17a553614c3da49b9b88f5b44fe0
sha256 1da329a8366a09991735ea683934dec9688f1576f72f8e51e5206e7c7d77d8eb
sha1 396a69352ff61fda4b68dfde4964579eb17d0c1b
|
| 0.6.3.tar.gz | tar.gz | 12.7 MiB |
blake3-24 14d2a2b98a675e2a8a5e1e970cb075409e3d82e79efdec01
sha256 090334718064e99295cd1edda796fe1b25dc531cb2934b7138cebd08b0046c34
sha1 cb36415939f707de63f03e93c7d972503891ea33
|
install
bazel
http_archive(
name = "meshtastic-firmware",
urls = ["https://ratatoskr.space/pkg/meshtastic-firmware/0.6.3.tar.gz"],
integrity = "sha256-CQM0cYBk6ZKVzR7dp5b+GyXcUxyyk0txOM69CLAEbDQ=",
strip_prefix = "meshtastic-firmware-0.6.3",
)
zig
.url = "https://ratatoskr.space/pkg/meshtastic-firmware/0.6.3.tar.gz",
install via yggdrasil mesh
bazel
http_archive(
name = "meshtastic-firmware",
urls = ["http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meshtastic-firmware/0.6.3.tar.gz"],
integrity = "sha256-CQM0cYBk6ZKVzR7dp5b+GyXcUxyyk0txOM69CLAEbDQ=",
strip_prefix = "meshtastic-firmware-0.6.3",
)
zig
.url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meshtastic-firmware/0.6.3.tar.gz",