Part Number: TMS570LS3137
Other Parts Discussed in Thread: HALCOGEN
Tool/software: Code Composer Studio
Configuration
Target hardware: TMS570LS31x HDK
Code Composer Studio Version: 8.2.0.00007
HALCoGen 04.06.00
Problem Description
I'm new to the Hercules processor and am attempting to activate TI FEE without success. I've closely followed the instructions given here: http://processors.wiki.ti.com/index.php/TI_FEE. However, when I run the resulting program (example_TI_Fee_Write_Read.c) using the CCS debugger my code gets stuck in the do loop below, that is, Status never equals IDLE. Where am I going wrong?
/* Initialize FEE. This will create Virtual sectors, initialize global variables etc.*/
TI_Fee_Init();
do
{
TI_Fee_MainFunction();
delay();
Status=TI_Fee_GetStatus(0 );
}
while(Status!= IDLE);