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.

AFE7950EVM: IQ Data Capturing in Rx

Part Number: AFE7950EVM
Other Parts Discussed in Thread: TSW14J58EVM, , AFE8000

Hi,

I am using AFE7950EVM with TSW14J58EVM and I want to extract IQ Data from the received signal. As the HSDC pro is not used in this integration I am using commands.

The commands for IQ Data is

AFE.selectCh(0,0) 

I = process.bitFunctions.outputData[::2]

Q = process.bitFunctions.outputData[1::2]

Please suggest where I can see the data as I have been running the code and its running without any error.

Regards.

  • Hi YS,

    To export the IQ data you can use the command below. In the CSV file the data will come out in two separate columns, 1st column I data and Q data in 2nd column. 

    AFE.saveCaptureData(r'C:\Users\<UserName>\Documents\AFE8000\CaptureData\saveData.csv) 

    Regards,

    David Chaparro