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.

Power Failure

Other Parts Discussed in Thread: SYSBIOS

Hi,

When I compiled a program written by myself with no error or warning and run it on my TMX320C6678L board, I found the following error:

"C66xx_0: Power Failure on Target CPU
C66xx_0: Failed to remove the debug state from the target before disconnecting. There may still be breakpoint op-codes embedded in program memory. It is recommended that you reset the emulator before you connect and reload your program before you continue debugging"

The error happened at the point executing fp = fopen("C:/Users/zhengzho/workspace/MIMO_detector_SP/szf.txt", "r");

BTW. I am using CCSV5.2 and the configuration:

var System = xdc.useModule('xdc.runtime.System');
var SysStd = xdc.useModule('xdc.runtime.SysStd');
System.SupportProxy = SysStd;

/* BIOS/XDC modules */

var BIOS = xdc.useModule('ti.sysbios.BIOS');
BIOS.heapSize = 0x800000;
BIOS.heapSection = "systemHeap";
Program.sectMap["systemHeap"] = "DDR3";

Would you please tell me how to fix problem? Thank you very much.