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.

AWR1243: MATLAB实时控制AWR1243以及实时返回数据问题

Part Number: AWR1243
Other Parts Discussed in Thread: DCA1000EVM

通过mmwave studio 上位机的MATLAB链接端口能否实现 雷达采集数据实时返回到MATLAB中

目前我的程序如下(MATLAB)

err = sendcmd(capture_readly);
if (err ~= 30000)
disp('Radarstudio Connection Failed');
end
pause(1)
err = sendcmd(start_frame);
if (err ~= 30000)
disp('Radarstudio Connection Failed');
end
%开始采集后需要等待波形持续时间+3S
pause(3)

err = sendcmd(PostProc);
if (err ~= 30000)
disp('Radarstudio Connection Failed');
end

如上所述,在控制雷达采集数据后,需要等待3S才能读取采集到的数据

实际雷达波形持续时间不到0.5S

这个延时是无法避免的吗?

2、有没有使用MATLAB控制雷达采集并进行后续处理的例程,在mmwave studio2.0软件包中的例程都是级联例程,有没有针对单AWR1243的例程

3、有没有实时控制的例程