Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

DSK6713 in CCS 3.1 EVAL ?

Status
Not open for further replies.

muoinhohn

Full Member level 2
Full Member level 2
Joined
Nov 5, 2004
Messages
135
Helped
5
Reputation
10
Reaction score
5
Trophy points
1,298
Location
Hanoi
Visit site
Activity points
1,007
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
 

Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top