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.

AWR2243BOOST: ADC原始数据采集

Part Number: AWR2243BOOST


我采用的是4级联

我采用的是4级联MMWCAS-rf-EVM 我使用mmwave stdio 采集到数据之后,得到了bin 数据文件。问题1:我的采集了两次 得到的数据文件数量不对: 这是第一次采集的数据,文件夹里面主芯片和从芯片都有两组数据。第二次采集: 此时我得到的数据有5组。这是为什么?

问题2:能提供一下将bin文件的数据导入到matlab中的代码么,我用你们自带的代码提取显示报错。

  • 问题1:可能是第一次采集时某些数据没有成功保存,或者在第二次采集时发生了一些意外。

    问题2:为您提供参考示例代码:

    fid = fopen('your_data_file.bin', 'r');
    data = fread(fid, 'float32');
    fclose(fid);