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.

AM5728: Facing issues while executing "MCASP_Audio_evmAM572x_c66ExampleProject"

Part Number: AM5728

I am able to build the example project and .out file was generated successfully but after loading the target DSP1 with the .out file i am getting error like "reset occured on the target".

Previously i am facing memory mismatch between ccs and target and i changed the AudioLoopback.cfg file little bit.

Instead of these lines(

Program.sectMap["BOARD_IO_DELAY_DATA"] = "OCMC_RAM1";
Program.sectMap["BOARD_IO_DELAY_CODE"] = "OCMC_RAM1")

I substitute the following lines,

Program.sectMap["BOARD_IO_DELAY_DATA"] = new Program.SectionSpec();
Program.sectMap["BOARD_IO_DELAY_CODE"] = new Program.SectionSpec();
Program.sectMap["BOARD_IO_DELAY_DATA"].type = "DSECT";
Program.sectMap["BOARD_IO_DELAY_CODE"].type = "DSECT";

How to overcome this issue?