yggvault ratatoskr-space connected via regular web
Color theme
also available via yggdrasil mesh http://[203:b338:2a84:a18f:986:47ae:1a4:d8d3]/pkg/meshtastic-firmware/0.7.10
vault / meshtastic-firmware / 0.7.10

meshtastic-firmware @ 0.7.10

integrity

size
12.9 MiB
downloaded
last checked
source https://github.com/meshtastic/firmware · available · github

release notes

(This is basically 0.7.9 with a couple of small tweaks - so releasing more broadly)

Wow! This last week has so many more great commits from other devs (mostly @professr). I'm still working on my changes (one more BLE bug still exists I think in ardunio-esp32 but I'm still working on nailing it down - now that my house tasks are complete), but I wanted to get all this new goodness out there.

Highlights of this release:

download

unix · zip
curl -fL -o 0.7.10.zip https://ratatoskr.space/pkg/meshtastic-firmware/0.7.10.zip
                    printf '%s  %s\n' '1565fa5e2eaf6830eb4202ac5fce5c6ea5d50017381fa1f4bb96de2c55b72500' '0.7.10.zip' | sha256sum -c -
windows · zip
$url = "https://ratatoskr.space/pkg/meshtastic-firmware/0.7.10.zip"
$out = "0.7.10.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "1565fa5e2eaf6830eb4202ac5fce5c6ea5d50017381fa1f4bb96de2c55b72500") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o 0.7.10.tar.gz https://ratatoskr.space/pkg/meshtastic-firmware/0.7.10.tar.gz
                    printf '%s  %s\n' '005da4fb205001a19c98fef0cdaa818058ae9cc5cd98bae2b719101843595a4d' '0.7.10.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "https://ratatoskr.space/pkg/meshtastic-firmware/0.7.10.tar.gz"
$out = "0.7.10.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "005da4fb205001a19c98fef0cdaa818058ae9cc5cd98bae2b719101843595a4d") { throw "sha256 mismatch" }
download via yggdrasil mesh
unix · zip
curl -fL -o 0.7.10.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meshtastic-firmware/0.7.10.zip
                    printf '%s  %s\n' '1565fa5e2eaf6830eb4202ac5fce5c6ea5d50017381fa1f4bb96de2c55b72500' '0.7.10.zip' | sha256sum -c -
windows · zip
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meshtastic-firmware/0.7.10.zip"
$out = "0.7.10.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "1565fa5e2eaf6830eb4202ac5fce5c6ea5d50017381fa1f4bb96de2c55b72500") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o 0.7.10.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meshtastic-firmware/0.7.10.tar.gz
                    printf '%s  %s\n' '005da4fb205001a19c98fef0cdaa818058ae9cc5cd98bae2b719101843595a4d' '0.7.10.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meshtastic-firmware/0.7.10.tar.gz"
$out = "0.7.10.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "005da4fb205001a19c98fef0cdaa818058ae9cc5cd98bae2b719101843595a4d") { throw "sha256 mismatch" }
artifact format size hashes
0.7.10.zip zip 12.9 MiB
blake3-24 27cfcbbd894d7cfa8ce1f5d8ab2a5970d966b676c8465e15
sha256 1565fa5e2eaf6830eb4202ac5fce5c6ea5d50017381fa1f4bb96de2c55b72500
sha1 eca242a4da6b0ce1fc4502166a2e833958e8deec
0.7.10.tar.gz tar.gz 12.9 MiB
blake3-24 11c192dce4b4069fb60fb948bfdf707b7ac31fe8ea99a85a
sha256 005da4fb205001a19c98fef0cdaa818058ae9cc5cd98bae2b719101843595a4d
sha1 01583406ad7ad9e49969bac446a56066c2ecbc1e

install

bazel
http_archive(
    name = "meshtastic-firmware",
    urls = ["https://ratatoskr.space/pkg/meshtastic-firmware/0.7.10.tar.gz"],
    integrity = "sha256-AF2k+yBQAaGcmP7wzaqBgFiunMXNmLritxkQGENZWk0=",
    strip_prefix = "meshtastic-firmware-0.7.10",
)
zig
.url = "https://ratatoskr.space/pkg/meshtastic-firmware/0.7.10.tar.gz",
install via yggdrasil mesh
bazel
http_archive(
    name = "meshtastic-firmware",
    urls = ["http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meshtastic-firmware/0.7.10.tar.gz"],
    integrity = "sha256-AF2k+yBQAaGcmP7wzaqBgFiunMXNmLritxkQGENZWk0=",
    strip_prefix = "meshtastic-firmware-0.7.10",
)
zig
.url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meshtastic-firmware/0.7.10.tar.gz",
← 0.7.110.7.8 →