README: expand app_console project structure with individual cmd_* files

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Robert McMahon 2026-02-07 21:46:38 -08:00
parent 0b8c3ae03a
commit 55f613c492
1 changed files with 10 additions and 1 deletions

View File

@ -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