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.

TMS320VC5510A: Migrating CCS 2.30 project into CCS 3.3 baseline

Part Number: TMS320VC5510A

Hi TI DSP Support Team,

I'm in preparation for project migration using CCS 3.3 (BIOS is 5.33) as a baseline for higher CCS. But I have to start with even an older CCS 2.30 project due to requirement. After I imported 2.3 project in 3.3 and converted from cdb to tcf,  I found following two build errors:

1)  error: identifier "hDmaXmt" is undefined   /* which refers to below line  */

void initIrq(void)
{

eventIdXmt = DMA_getEventId(hDmaXmt);

2) error: identifier "GPIO_GPIO" is undefined   /* which refers below in the main() */

GPIO_pinDirection (GPIO_PIN4, GPIO_OUTPUT);

In the same main() context, I did call
`CSL_init()` and `cslCfgInit()` from main() FYI.

3) Since the the 3.3 conversion, I have to use #define CHIP_550X 1, is there any other way to have CHIP DEFINED in CCS build options? such as what I used to have in "custom target" as "550X:2". Please comment.

I greatly appreciate if you can point out any porting short cut, details since much has been changed and even more so for later version CCS.  Any code samples can be helpful and please provide document link, etc. 

Thanks in advance,

Shao