README: expand app_console project structure with individual cmd_* files
Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
parent
0b8c3ae03a
commit
55f613c492
11
README.md
11
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
|
||||
|
|
|
|||
Loading…
Reference in New Issue