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/TMS320F28335: xintf read and write data

Part Number: TMS320F28335

Tool/software: Code Composer Studio

I want to use xinf for reading and writing data. I took Example_2833xDMA_xintf_to_ram, and commented all with dma part. After that i changed XTIMING7 to XTIMING0, and added to main loop text code

       *(Uint16 *)(0x4000 + (16 *index)) = write_data;
       read_data = *(Uint16 *)(0x4000 + (16 *index));

Is it correct? index is number of 16 bits variable in xintf 0 zone.