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.

TMS320C6416T: Chip support library

Part Number: TMS320C6416T

Hi TI experts,

I need to write a simple program for TMS320c6416t to blink an LED on a gpio pin, for this I use CSL.

Immediately I got a problem when calling the CSL_init function, I get the following errors

the CSL_init function in CSL.h

Program code:

#include <stdio.h>
#include <csl.h>

int main(void)
{
CSL_init();
return 0;
}