From e9ddcd7b2b0f046d530d3a6cb79062ab73e48b00 Mon Sep 17 00:00:00 2001 From: Robert McMahon Date: Mon, 30 Mar 2026 18:18:50 -0700 Subject: [PATCH] docs: FiWiManager example path; drop hub_manager references Use FiWiManager in remote_ssh.env.example. Remove obsolete hub_manager mentions from design and CLI docs. Made-with: Cursor --- docs/fiwi-cli.md | 2 -- docs/fiwi-design.md | 1 - remote_ssh.env.example | 2 +- 3 files changed, 1 insertion(+), 4 deletions(-) diff --git a/docs/fiwi-cli.md b/docs/fiwi-cli.md index b12e2fe..3eadbb3 100644 --- a/docs/fiwi-cli.md +++ b/docs/fiwi-cli.md @@ -8,8 +8,6 @@ This document lists how to invoke the Fi-Wi CLI from a shell. For architecture, python3 /path/to/fiwi.py [options] [arguments…] ``` -`hub_manager.py` in the same directory is **deprecated** and prints a warning; use `fiwi.py`. - ## Global options | Option / env | Meaning | diff --git a/docs/fiwi-design.md b/docs/fiwi-design.md index f1117f8..78c5311 100644 --- a/docs/fiwi-design.md +++ b/docs/fiwi-design.md @@ -12,7 +12,6 @@ The Fi-Wi stack ties together **Acroname / BrainStem USB hubs**, a **patch panel |--------|------| | `fiwi.py` | Entry point; configures `fiwi.paths` with the install directory, then runs `fiwi.cli.main`. | | `fiwi/` | Library: harness, SSH transport, fiber map I/O, USB/wireless probes, diagnostics. | -| `hub_manager.py` | Deprecated shim; forwards to the same CLI as `fiwi.py`. | | `fiber_map.json` | Lives next to `fiwi.py` (see `fiwi.paths`). Operator-edited or calibrate-produced. | | `remote_ssh.env` / `.fiwi_remote` | Optional dotenv next to the install; merged into process env for SSH defaults (see `SshNodeConfig`). | diff --git a/remote_ssh.env.example b/remote_ssh.env.example index 6983f07..0347d87 100644 --- a/remote_ssh.env.example +++ b/remote_ssh.env.example @@ -7,7 +7,7 @@ # realpath /path/to/fiwi.py FIWI_REMOTE_PYTHON=/home/pi/venv/bin/python3 -FIWI_REMOTE_SCRIPT=/home/pi/UmberHubManager/fiwi.py +FIWI_REMOTE_SCRIPT=/home/pi/FiWiManager/fiwi.py # Optional: comma-separated hosts for hybrid panel calibrate (with local hubs in one run): # FIWI_CALIBRATE_REMOTES=pi@192.168.1.50,pi@192.168.1.51