Now I am working with AWR1642 and TSW1400EVM and MMDEVpack.
I have read the application note "xWR1xxx ADC Raw Data Capture.pdf" and analyzed matlab code. However, I have a problem about the code for AWR1642.
I use complex 1X mode. According to the application note, the bin format is shown,
In the code:
LVDS(1,:) = adcData(1,:) + sqrt(-1)*adcData(2,:); if numRX > 1 LVDS(2,:) = adcData(3,:) + sqrt(-1)*adcData(4,:);
temp_LVDS_data_1 = LVDS
LVDS = reshape([LVDS(1,:); LVDS(2,:)], size(LVDS(1,:),1), []);%%% end
For example, the value of temp_LVDS_data_1 is (only for one chirp)
Each value in temp_LVDS_data_1 is complex.
Then if we run this line:
LVDS = reshape([LVDS(1,:); LVDS(2,:)], size(LVDS(1,:),1), [])
LVDS can be described as shown: