ruview @ v0.6.6-esp32
integrity
- size
- 54.8 MiB
- downloaded
- last checked
release notes
ESP32-S3 CSI Node v0.6.6
Bug fix
#683 — WDT storm on edge tier>=2 (N16R8 PSRAM boards)
At edge tier>=2 on N16R8 boards, process_frame() ran
update_multi_person_vitals() (4 persons × 256 history samples) plus the
WASM dispatch back-to-back before yielding. Under sustained CSI load (30 pps),
IDLE1 on Core 1 was starved long enough for the 5-second Task Watchdog Timer
to fire a panic.
Fix: two vTaskDelay(1) calls added inside process_frame() at tier>=2:
after multi-person vitals (Step 11) and after WASM dispatch (Step 14).
Tier 0/1 devices are unaffected. Validated on COM7 — no WDT panics.
Binaries
| File | Flash size | Offset |
|---|---|---|
bootloader.bin |
— | 0x0 |
partition-table.bin |
8 MB | 0x8000 |
ota_data_initial.bin |
8 MB | 0xf000 |
esp32-csi-node.bin |
8 MB | 0x20000 |
partition-table-4mb.bin |
4 MB | 0x8000 |
esp32-csi-node-4mb.bin |
4 MB | 0x20000 |
Flash command (8 MB)
python -m esptool --chip esp32s3 -p COM7 -b 460800 write_flash 0x0 bootloader.bin 0x8000 partition-table.bin 0xf000 ota_data_initial.bin 0x20000 esp32-csi-node.bin
download
unix · zip
curl -fL -o v0.6.6-esp32.zip https://ratatoskr.space/pkg/ruview/v0.6.6-esp32.zip
printf '%s %s\n' '8a101a69292dc4c8c8bd082b80cda8080a4511acab4bc573908a3f05b5ca9a57' 'v0.6.6-esp32.zip' | sha256sum -c -
windows · zip
$url = "https://ratatoskr.space/pkg/ruview/v0.6.6-esp32.zip"
$out = "v0.6.6-esp32.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "8a101a69292dc4c8c8bd082b80cda8080a4511acab4bc573908a3f05b5ca9a57") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v0.6.6-esp32.tar.gz https://ratatoskr.space/pkg/ruview/v0.6.6-esp32.tar.gz
printf '%s %s\n' 'f31ac73e2d45d7b08e773571fb34d69c85f2187b120bdb071a65bac0d268296a' 'v0.6.6-esp32.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "https://ratatoskr.space/pkg/ruview/v0.6.6-esp32.tar.gz"
$out = "v0.6.6-esp32.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "f31ac73e2d45d7b08e773571fb34d69c85f2187b120bdb071a65bac0d268296a") { throw "sha256 mismatch" }
download via yggdrasil mesh
unix · zip
curl -fL -o v0.6.6-esp32.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/ruview/v0.6.6-esp32.zip
printf '%s %s\n' '8a101a69292dc4c8c8bd082b80cda8080a4511acab4bc573908a3f05b5ca9a57' 'v0.6.6-esp32.zip' | sha256sum -c -
windows · zip
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/ruview/v0.6.6-esp32.zip"
$out = "v0.6.6-esp32.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "8a101a69292dc4c8c8bd082b80cda8080a4511acab4bc573908a3f05b5ca9a57") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v0.6.6-esp32.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/ruview/v0.6.6-esp32.tar.gz
printf '%s %s\n' 'f31ac73e2d45d7b08e773571fb34d69c85f2187b120bdb071a65bac0d268296a' 'v0.6.6-esp32.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/ruview/v0.6.6-esp32.tar.gz"
$out = "v0.6.6-esp32.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "f31ac73e2d45d7b08e773571fb34d69c85f2187b120bdb071a65bac0d268296a") { throw "sha256 mismatch" }
| artifact | format | size | hashes |
|---|---|---|---|
| v0.6.6-esp32.zip | zip | 54.7 MiB |
blake3-24 4cb1c1d536f0b0fe96fca30648911aeaf32aa12e03dec7e4
sha256 8a101a69292dc4c8c8bd082b80cda8080a4511acab4bc573908a3f05b5ca9a57
sha1 0178ff8d1f00c55f406325394dc398d15219d050
|
| v0.6.6-esp32.tar.gz | tar.gz | 53.3 MiB |
blake3-24 2ced9dd7ab4a588bfbc6bed84814c6085166a613cde09187
sha256 f31ac73e2d45d7b08e773571fb34d69c85f2187b120bdb071a65bac0d268296a
sha1 e5f245000797e2fc093577e852c4d57aedeebf7d
|
install
bazel
http_archive(
name = "ruview",
urls = ["https://ratatoskr.space/pkg/ruview/v0.6.6-esp32.tar.gz"],
integrity = "sha256-8xrHPi1F17COdzVx+zTWnIXyGHsSC9sHGmW6wNJoKWo=",
strip_prefix = "ruview-v0.6.6-esp32",
)
zig
.url = "https://ratatoskr.space/pkg/ruview/v0.6.6-esp32.tar.gz",
install via yggdrasil mesh
bazel
http_archive(
name = "ruview",
urls = ["http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/ruview/v0.6.6-esp32.tar.gz"],
integrity = "sha256-8xrHPi1F17COdzVx+zTWnIXyGHsSC9sHGmW6wNJoKWo=",
strip_prefix = "ruview-v0.6.6-esp32",
)
zig
.url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/ruview/v0.6.6-esp32.tar.gz",