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?