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.

CCS / AWR1642:TI data

Part Number: AWR1642

Tool/software: Code Composer Studio

Recently, I was uisng mmWave SDK 2.0.

1、I want to export data after ADC when I use CCS to Debug. Which variable can I choose to export?

2、How can I export data from CCS? 

  • Hi,
    If you are using mem_capture test application of SDK then you need to look for 'gDataCube' at DSS core which maps to L3 memory address (0x20000000). You need to go memory-browser option of CCS GUI and go to this address, right click on memory to save the memory content where you need to provides relevant inputs.

    Regards,
    Jitendra
  • Hello, Jitendra!
    How about ''mmWave demo'' in mmWave SDK2.0 .Which variable should I find?
  • Hi,
    I was assuming if you are trying to get ADCBuff data for a full frame, where mem_capture test app can help.
    But if with mmw-demo you need to read ADCBuff data then you need to for '0x2100 0000' memory address to read the data from CCS (memory browser). Be noted that this memory location will be updated at every chirp event, so if more than chirp is enable in a frame then you will not able to access first chirp data at ADCBuff memory location.
    mem_capture solve this problem where it copies all the chirps data (of a frame) from ADCBuff to L3 memory.


    Regards,
    Jitendra
  • ok. Thank you very much!