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.

ccsv4 tms3206467t toggle leds

Other Parts Discussed in Thread: TMS320DM6467T

I have this problem:

i am trying to turn on the leds of the tms320dm6467t with code composer v4.2.2.

 

  • I correct this problem, but i have a new one, the program build correctly and the conection run well also, but the leds not turn on. this is the main program:

     

    #include "led1cfg.h"

    #include "evmdm6467.h"

    #include "evmdm6467_led.h"

    #include "stdio.h"

    void main(void){

     

    Int16 x;

    x=2;

    EVMDM6467_init( );

    EVMDM6467_LED_init( );

        EVMDM6467_LED_on(x);

        EVMDM6467_LED_off(x);

    }

    any suggestion

    thanks for your time