From 55f613c492fcd9eba918167fb136ef6c17edac58 Mon Sep 17 00:00:00 2001 From: Robert McMahon Date: Sat, 7 Feb 2026 21:46:38 -0800 Subject: [PATCH] README: expand app_console project structure with individual cmd_* files Co-authored-by: Cursor --- README.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 5140293..c111581 100644 --- a/README.md +++ b/README.md @@ -218,7 +218,16 @@ The deployment script (`esp32_deploy.py`) can use these stable symlinks when `-- │ ├── broadcast_beacon.c/h # UDP broadcast for laptop discovery │ └── board_config.h # Hardware pin definitions ├── components/ -│ ├── app_console/ # Console command implementations (cmd_*) +│ ├── app_console/ # Console command implementations +│ │ ├── cmd_wifi.c # WiFi commands (connect, scan, status, mode, power) +│ │ ├── cmd_ip.c # IP configuration (addr, set, dhcp) +│ │ ├── cmd_iperf.c # iPerf commands (start, stop, status, set, save, reload, clear) +│ │ ├── cmd_monitor.c # Monitor mode (start, stop, channel, status) +│ │ ├── cmd_sdcard.c # SD card commands (status, list, read, write, send, delete) +│ │ ├── cmd_gps.c # GPS commands (status) +│ │ ├── cmd_system.c # System commands (reset, version, info, heap) +│ │ ├── cmd_ping.c # Ping command +│ │ └── cmd_nvs.c # NVS management commands │ ├── iperf/ # iPerf traffic generator core │ ├── wifi_controller/ # WiFi management and monitor mode │ ├── wifi_monitor/ # 802.11 frame capture and collapse detection