大家好、我已经尝试运行 TCP 套接字示例、在选择接收数据包后、我按照命令提示符中的说明运行"iperf3.exe -c 192.168.0.104 -i 1 -t 100000"、但收到错误。
iperf3:参数错误-测试持续时间过长(最大值= 86400秒)
请帮助!
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
您好、Kobi、
是的、我确定 cc3200和我的 PC 都连接到同一个 AP。
我在 SL_Receive 循环中添加了以下列印:
while (lLoopCount < g_ulPacketCount)
{
报告("\n\nr sl_Recv");
iStatus = sl_Recv (iNewSockID、g_cBsdBuf、iTestBufLen、0);
报告("\n\nr sl_Recv2");
if (iStatus <= 0)
{
//错误
报告("\n\nr sl_Recv 错误");
sl_close (iNewSockID);
sl_close (iSockID);
ASSERT_ON_ERROR (RECV_ERROR);
}
lLoopCount++;
}
显然、它只循环一次。 并在第二次执行 sl_Recv 函数时停止。 有什么想法吗?