espressif / esp-csi

Applications based on Wi-Fi CSI (Channel state information), such as indoor positioning, human detection
Apache License 2.0
704 stars 110 forks source link

esp_csi_tool.py: error: the following arguments are required: -p/--port (AEGHB-813) #206

Open CCY-Dean opened 2 months ago

CCY-Dean commented 2 months ago

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

esp_csi_tool.py: error: the following arguments are required: -p/--port

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

NingYuxiang commented 18 hours ago

这个错误提示表明在运行 esp_csi_tool.py 时,缺少了必需的 -p 或 --port 参数,这个参数指定了连接到 ESP32 设备的串口(即设备的端口号)。该工具需要通过串口与 ESP32 设备进行通信。

解决方法

1、查看可用串口:

你需要找到 ESP32 设备连接到计算机上的串口端口。

一旦确定了 ESP32 设备的串口端口,使用 -p 或 --port 参数指定端口。例如:

python esp_csi_tool.py -p COM3  # Windows
python esp_csi_tool.py -p /dev/ttyUSB0  # Linux