vault / meshtastic-firmware / 0.8.2
meshtastic-firmware @ 0.8.2
integrity
- size
- 12.9 MiB
- downloaded
- last checked
release notes
Major changes:
- @aHVzY2g added support for the ttgo-lora-v2-1-1.6 device (which is apparently different from the other ttgo-loras ;-) )
- The problem of ESP32 devices forgetting their BLE pairing should be fixed
download
unix · zip
curl -fL -o 0.8.2.zip https://ratatoskr.space/pkg/meshtastic-firmware/0.8.2.zip
printf '%s %s\n' '75322468267ce7eb51fe34480e8c410e5d80aa338367634375a6cbbee904a398' '0.8.2.zip' | sha256sum -c -
windows · zip
$url = "https://ratatoskr.space/pkg/meshtastic-firmware/0.8.2.zip"
$out = "0.8.2.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "75322468267ce7eb51fe34480e8c410e5d80aa338367634375a6cbbee904a398") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o 0.8.2.tar.gz https://ratatoskr.space/pkg/meshtastic-firmware/0.8.2.tar.gz
printf '%s %s\n' 'c667470bc0fcb4d2c13fb219d120945cab63a798e1939d88cea565775c882229' '0.8.2.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "https://ratatoskr.space/pkg/meshtastic-firmware/0.8.2.tar.gz"
$out = "0.8.2.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "c667470bc0fcb4d2c13fb219d120945cab63a798e1939d88cea565775c882229") { throw "sha256 mismatch" }
download via yggdrasil mesh
unix · zip
curl -fL -o 0.8.2.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meshtastic-firmware/0.8.2.zip
printf '%s %s\n' '75322468267ce7eb51fe34480e8c410e5d80aa338367634375a6cbbee904a398' '0.8.2.zip' | sha256sum -c -
windows · zip
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meshtastic-firmware/0.8.2.zip"
$out = "0.8.2.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "75322468267ce7eb51fe34480e8c410e5d80aa338367634375a6cbbee904a398") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o 0.8.2.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meshtastic-firmware/0.8.2.tar.gz
printf '%s %s\n' 'c667470bc0fcb4d2c13fb219d120945cab63a798e1939d88cea565775c882229' '0.8.2.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meshtastic-firmware/0.8.2.tar.gz"
$out = "0.8.2.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "c667470bc0fcb4d2c13fb219d120945cab63a798e1939d88cea565775c882229") { throw "sha256 mismatch" }
| artifact | format | size | hashes |
|---|---|---|---|
| 0.8.2.zip | zip | 12.9 MiB |
blake3-24 d5173f66f24e0ef007fd20b9ead2cc115c086d37c162bc44
sha256 75322468267ce7eb51fe34480e8c410e5d80aa338367634375a6cbbee904a398
sha1 d0404f93429560f7f44932312ef40bdeb8e46233
|
| 0.8.2.tar.gz | tar.gz | 12.9 MiB |
blake3-24 119bd9b214c59331d9a4caaf02aa9680e1547f53da7c1d71
sha256 c667470bc0fcb4d2c13fb219d120945cab63a798e1939d88cea565775c882229
sha1 efb987c3c7e4608f070cb7c3a5a88e0ceb2301d9
|
install
bazel
http_archive(
name = "meshtastic-firmware",
urls = ["https://ratatoskr.space/pkg/meshtastic-firmware/0.8.2.tar.gz"],
integrity = "sha256-xmdHC8D8tNLBP7IZ0SCUXKtjp5jhk52IzqVld1yIIik=",
strip_prefix = "meshtastic-firmware-0.8.2",
)
zig
.url = "https://ratatoskr.space/pkg/meshtastic-firmware/0.8.2.tar.gz",
install via yggdrasil mesh
bazel
http_archive(
name = "meshtastic-firmware",
urls = ["http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meshtastic-firmware/0.8.2.tar.gz"],
integrity = "sha256-xmdHC8D8tNLBP7IZ0SCUXKtjp5jhk52IzqVld1yIIik=",
strip_prefix = "meshtastic-firmware-0.8.2",
)
zig
.url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meshtastic-firmware/0.8.2.tar.gz",