Tool/software: Code Composer Studio
I'm trying to load a GEL file on an AM3354 custom board. I'm using CCSv6 on Ubuntu with an XDS200 JTAG probe.
The connection hangs during CORE_PLL_Config:
//now lock the PLL
clkmode =(clkmode&0xfffffff8)|0x00000007;
WR_MEM_32(CM_CLKMODE_DPLL_CORE,clkmode);
GEL_TextOut("**** Really locking Core...\n","Output",1,1,1);
while((RD_MEM_32(CM_IDLEST_DPLL_CORE) & 0x00000001 )!=0x00000001); <------ Hangs here
GEL_TextOut("**** Core locked\n","Output",1,1,1);
[Complete GEL file is attached...]
What signals should I look at on my board that could cause that to hang?