diff --git a/README.md b/README.md index 0afdaa64..6f05b5c0 100644 --- a/README.md +++ b/README.md @@ -1043,14 +1043,16 @@ Download a pre-built binary — no build toolchain needed: | Release | What's included | Tag | |---------|-----------------|-----| -| [v0.2.0](https://github.com/ruvnet/RuView/releases/tag/v0.2.0-esp32) | Stable — raw CSI streaming, multi-node TDM, channel hopping | `v0.2.0-esp32` | +| [v0.4.1](https://github.com/ruvnet/RuView/releases/tag/v0.4.1-esp32) | **Stable** — CSI build fix, compile guard, AMOLED display, edge intelligence ([ADR-057](docs/adr/ADR-057-firmware-csi-build-guard.md)) | `v0.4.1-esp32` | | [v0.3.0-alpha](https://github.com/ruvnet/RuView/releases/tag/v0.3.0-alpha-esp32) | Alpha — adds on-device edge intelligence and WASM modules ([ADR-039](docs/adr/ADR-039-esp32-edge-intelligence.md), [ADR-040](docs/adr/ADR-040-wasm-programmable-sensing.md)) | `v0.3.0-alpha-esp32` | +| [v0.2.0](https://github.com/ruvnet/RuView/releases/tag/v0.2.0-esp32) | Raw CSI streaming, multi-node TDM, channel hopping | `v0.2.0-esp32` | ```bash # 1. Flash the firmware to your ESP32-S3 python -m esptool --chip esp32s3 --port COM7 --baud 460800 \ - write_flash --flash_mode dio --flash_size 8MB \ - 0x0 bootloader.bin 0x8000 partition-table.bin 0x10000 esp32-csi-node.bin + write_flash --flash-mode dio --flash-size 8MB --flash-freq 80m \ + 0x0 bootloader.bin 0x8000 partition-table.bin \ + 0xf000 ota_data_initial.bin 0x20000 esp32-csi-node.bin # 2. Set WiFi credentials and server address (stored in flash, survives reboots) python firmware/esp32-csi-node/provision.py --port COM7 \