Other Parts Discussed in Thread: IWR1642BOOST
Hello,
I am trying to view raw adc data that is captured from an IWR1642BOOST and streamed through an ethernet cable to my PC. I was able to capture several seconds of data using mmwave studio. Currently, I'm opening the adc_data.bin file in MATLAB using the following code:
dir_name = 'C:\ti\mmwave_studio_02_00_00_02\mmWaveStudio\PostProc\';
file_name_bin = 'adc_data.bin';
file_path_bin = strcat(dir_name, file_name_bin);
fid_bin = fopen(file_path_bin);
dataBin = fread(fid_bin, 'uint8');
fclose(fid_bin);
This outputs a "dataBin" array that is size 52428800x1. I am having trouble making sense of this data and matching it to the format described in section 23.8 of the mmWave Studio Users Guide. How can I reformat this file to correctly separate the in-phase and quadrature components of each sample and receive channel as described in the user guide?
Regards,
Josh
