vault / meshtastic-firmware / 0.7.4
meshtastic-firmware @ 0.7.4
integrity
- size
- 12.9 MiB
- downloaded
- last checked
release notes
- Change nodenum and packet ID to be 32 bits (this should be backwards compatible with the apps, and this should be the last protocol change before 1.0). Longer nodenums enable the upcoming MQTT/internet gateway feature, longer packet IDs make the encryption more secure.
- @rradar and @slavino Improved the README. Thanks!
- Remove the rev1 BLE API (hasn't been used by recent apps)
- When using the USB version of the protocol, prevent the device from sleeping
- When using the USB protocol, disable the "next screen" button
download
unix · zip
curl -fL -o 0.7.4.zip https://ratatoskr.space/pkg/meshtastic-firmware/0.7.4.zip
printf '%s %s\n' 'd7387e7f1838472e2b224e0649e0b32e460c5407af910acbb6b93932e3f83068' '0.7.4.zip' | sha256sum -c -
windows · zip
$url = "https://ratatoskr.space/pkg/meshtastic-firmware/0.7.4.zip"
$out = "0.7.4.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "d7387e7f1838472e2b224e0649e0b32e460c5407af910acbb6b93932e3f83068") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o 0.7.4.tar.gz https://ratatoskr.space/pkg/meshtastic-firmware/0.7.4.tar.gz
printf '%s %s\n' 'c17ececb22d53cc18c928f1789c2a7e51299c95495f4e6c51e7c730f606f873f' '0.7.4.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "https://ratatoskr.space/pkg/meshtastic-firmware/0.7.4.tar.gz"
$out = "0.7.4.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "c17ececb22d53cc18c928f1789c2a7e51299c95495f4e6c51e7c730f606f873f") { throw "sha256 mismatch" }
download via yggdrasil mesh
unix · zip
curl -fL -o 0.7.4.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meshtastic-firmware/0.7.4.zip
printf '%s %s\n' 'd7387e7f1838472e2b224e0649e0b32e460c5407af910acbb6b93932e3f83068' '0.7.4.zip' | sha256sum -c -
windows · zip
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meshtastic-firmware/0.7.4.zip"
$out = "0.7.4.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "d7387e7f1838472e2b224e0649e0b32e460c5407af910acbb6b93932e3f83068") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o 0.7.4.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meshtastic-firmware/0.7.4.tar.gz
printf '%s %s\n' 'c17ececb22d53cc18c928f1789c2a7e51299c95495f4e6c51e7c730f606f873f' '0.7.4.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meshtastic-firmware/0.7.4.tar.gz"
$out = "0.7.4.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "c17ececb22d53cc18c928f1789c2a7e51299c95495f4e6c51e7c730f606f873f") { throw "sha256 mismatch" }
| artifact | format | size | hashes |
|---|---|---|---|
| 0.7.4.zip | zip | 12.9 MiB |
blake3-24 8dd6c7de3588c337e4a0ef50c3f1de6bc895a999791615fa
sha256 d7387e7f1838472e2b224e0649e0b32e460c5407af910acbb6b93932e3f83068
sha1 aedd8986e714e0def8be465e95037b9f833c87de
|
| 0.7.4.tar.gz | tar.gz | 12.8 MiB |
blake3-24 a0b7636b91ff29083aea2c71ced96031c602c2fd0c6f85db
sha256 c17ececb22d53cc18c928f1789c2a7e51299c95495f4e6c51e7c730f606f873f
sha1 641e65575f04d0fa514ca2d93ac7a92e61636efa
|
install
bazel
http_archive(
name = "meshtastic-firmware",
urls = ["https://ratatoskr.space/pkg/meshtastic-firmware/0.7.4.tar.gz"],
integrity = "sha256-wX7OyyLVPMGMko8XicKn5RKZyVSV9ObFHnxzD2Bvhz8=",
strip_prefix = "meshtastic-firmware-0.7.4",
)
zig
.url = "https://ratatoskr.space/pkg/meshtastic-firmware/0.7.4.tar.gz",
install via yggdrasil mesh
bazel
http_archive(
name = "meshtastic-firmware",
urls = ["http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meshtastic-firmware/0.7.4.tar.gz"],
integrity = "sha256-wX7OyyLVPMGMko8XicKn5RKZyVSV9ObFHnxzD2Bvhz8=",
strip_prefix = "meshtastic-firmware-0.7.4",
)
zig
.url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meshtastic-firmware/0.7.4.tar.gz",