muoinhohn
Full Member level 2
Hi
I use a DSK C6713 with CCS 3.1 EVAL.
My program is very simple. I try to use LED functions in BSL library.
----------------------
#define CHIP_6713 1
#include "c:\ti\c6000\dsk6713\include\dsk6713.h"
#include "c:\ti\c6000\dsk6713\include\dsk6713_led.h"
void main()
{
DSK6713_init(); // all 4 leds are off
DSK6713_LED_init();
DSK6713_LED_off(3); // led 3 off but led 2 on
DSK6713_LED_off(2); // led 2 off
DSK6713_LED_off(1); // led 1 off but led 2 on
DSK6713_LED_off(0); // led 0 off but led 3 on
while(1){
DSK6713_waitusec(200000);
DSK6713_LED_toggle(0);
}
}
------------------------
However, when I debug the program, I receive the error operations what I worote in comments above.
Do you have the advice or comments about this problem.
Best regard
Muoinho
I use a DSK C6713 with CCS 3.1 EVAL.
My program is very simple. I try to use LED functions in BSL library.
----------------------
#define CHIP_6713 1
#include "c:\ti\c6000\dsk6713\include\dsk6713.h"
#include "c:\ti\c6000\dsk6713\include\dsk6713_led.h"
void main()
{
DSK6713_init(); // all 4 leds are off
DSK6713_LED_init();
DSK6713_LED_off(3); // led 3 off but led 2 on
DSK6713_LED_off(2); // led 2 off
DSK6713_LED_off(1); // led 1 off but led 2 on
DSK6713_LED_off(0); // led 0 off but led 3 on
while(1){
DSK6713_waitusec(200000);
DSK6713_LED_toggle(0);
}
}
------------------------
However, when I debug the program, I receive the error operations what I worote in comments above.
Do you have the advice or comments about this problem.
Best regard
Muoinho