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.

How to use the DSP C6416 library for project in CCS?

Status
Not open for further replies.

vasa

Newbie level 2
Joined
Apr 12, 2004
Messages
2
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
34
include library in CCS

Is there some person who is familar with TI DSP C6416?

How could I use the DSP library for my project in CCS?
When I add it to project, and include the headfile, in which the API is, there always is a error , saying can't find the headfile.

Thank you to reply to me
 

Re: include library in CCS

Is there some person who is familar with TI DSP C6416?

How could I use the DSP library for my project in CCS?
When I add it to project, and include the headfile, in which the API is, there always is a error , saying can't find the headfile.

CCS compiler doesn´t have a linker, so you must include the driver C6416.C at the end of your main.

Code:
void main()
{
// your code
// ----------
// ----------
}

#include <C6416.C>

Off course the driver must be in the same compiler directory.

hope this help,

humber555
 

Re: include library in CCS

think i have the same problem.
The CCS asks for a tmwtypes.h file
and also prints a message cannot define chip.
The prolem is that i do not have a main in my generated xx.c file
to add the drivers
Please help
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top