Open CCY-Dean opened 2 months ago
这个错误提示表明在运行 esp_csi_tool.py 时,缺少了必需的 -p 或 --port 参数,这个参数指定了连接到 ESP32 设备的串口(即设备的端口号)。该工具需要通过串口与 ESP32 设备进行通信。
1、查看可用串口:
你需要找到 ESP32 设备连接到计算机上的串口端口。
ls /dev/ttyUSB* # Linux
2、使用正确的端口运行命令:
一旦确定了 ESP32 设备的串口端口,使用 -p 或 --port 参数指定端口。例如:
python esp_csi_tool.py -p COM3 # Windows
python esp_csi_tool.py -p /dev/ttyUSB0 # Linux
Checklist
How often does this bug occurs?
always
Expected behavior
我在esp32-s3上运行了esp-radar的代码,本来应该有波形界面产生
Actual behavior (suspected bug)
发现在运行esp_csi_tool时无界面显示
Error logs or terminal output
Steps to reproduce the behavior
重装试过了不行
Project release version
v5.3.1
System architecture
Intel/AMD 64-bit (modern PC, older Mac)
Operating system
Windows
Operating system version
Window10
Shell
ZSH
Additional context
No response