2.2 KiB
2.2 KiB
| description | argument-hint |
|---|---|
| Provision WiFi credentials, sink IP, and optional channel / MAC-filter overrides onto a RuView ESP32 node. | --port COM8 --ssid ... --password ... --target-ip ... [--channel N] [--filter-mac AA:BB:..] |
/ruview-provision
Write NVS config to an ESP32 sensing node.
- Invoke the
ruview-configureskill (§"Runtime device config" — has the fullprovision.pyflag table). - Run
python firmware/esp32-csi-node/provision.py --helpfor the authoritative options (on Windows:PYTHONUTF8=1 PYTHONIOENCODING=utf-8 python …— the help text has non-ASCII). Collect any missing params (port — default COM8, SSID, password, target sink IP,--target-portdefault 5005,--node-id). - Run:
python firmware/esp32-csi-node/provision.py --port <PORT> \ --ssid "<SSID>" --password "<PW>" --target-ip <IP> --target-port 5005 --node-id <0-255> \ [--channel <N>] [--filter-mac <MAC>] [--hop-channels 1,6,11 --hop-dwell 200] \ [--tdm-slot <i> --tdm-total <n>] [--edge-tier {0|1|2}] [--pres-thresh 50] [--fall-thresh 15000] \ [--vital-win 300] [--vital-int 1000] [--subk-count 32] \ [--seed-url http://… --seed-token … --zone lobby] [--swarm-hb 30] [--swarm-ingest 5] [--dry-run] - Explain trade-offs:
--channelpins the node (AP's channel) vs.--hop-channelsfor ADR-061 multi-freq hopping;--filter-macrestricts to one transmitter vs. omit for all (more data, more noise);--edge-tier0/1/2 = off/stats/vitals;--tdm-slot/--tdm-totalslot a multi-node mesh. - ⚠️ Issue #391: flashing rewrites the entire
csi_cfgNVS namespace — every key not on the CLI is erased. Pass the full set you want; warn the user before re-provisioning a working node.--force-partialbypasses the WiFi-creds requirement (knowingly).--dry-runbuilds the NVS binary without flashing. - Fleet provisioning:
scripts/generate_nvs_matrix.py(subprocess-first). - Verify: serial monitor (pyserial on the port, 115200) should show
adaptive_ctrlticks +csi_collector: CSI cb #… len=128 …lines; the sink (cd v2 && cargo run -p wifi-densepose-sensing-server) should report incoming UDP frames if--target-ippoints at this host.