Hello,
I have a problem starting a new project in CCS 4.
I set the compiler and the pathes for the different header files and then I tried to build my project for debug.
The source code (quite simple) :
#include "inc/hw_memmap.h"
#include "inc/hw_nvic.h"
#include "inc/hw_sysctl.h"
#include "inc/hw_types.h"
#include "drivers/set_pinout.h"
#include "driverlib/gpio.h"
#include "driverlib/flash.h"
#include "driverlib/sysctl.h"
#include "driverlib/systick.h"
#include "driverlib/uart.h"
#include "driverlib/udma.h"
#include "driverlib/rom.h"
#include "grlib/grlib.h"
#include "utils/ustdlib.h"
#include "drivers/kitronix320x240x16_ssd2119_8bit.h"
#include "drivers/touch.h"
int
main(void)
{
PinoutSet();
Kitronix320x240x16_SSD2119Init();
while(1)
{
}
}
I always get the next error messages:
undefined first referenced
symbol in file
--------- ----------------
Kitronix320x240x16_SSD2119Init ./probaproject.obj
PinoutSet ./probaproject.obj
error: unresolved symbols remain
error: errors encountered during linking; "probaproject.out" not built
Can you help me what can be the problem?
Thank you very much
David