Part Number: LAUNCHXL-F28379D
Other Parts Discussed in Thread: C2000WARE
Tool/software: Code Composer Studio
I have posted this program earlier and corrected but I couldnot debug it successfully. Now I have added a delay syntax to get a square pulse at the output of the PIN 74 J8. As I am now building this program following errors are there please suggest me what to do. As "error #10234-D: unresolved symbols remain" mean there is linking error I tried to include all the relevant folders in the including path. Please help me how to overcome these errors.
Thank you
Bighnaraj Panda
include "F28x_Project.h"
void delay ();
void Gpio_setup (void);
//void Toggle_G10(void);
//void Toggle_G14 (void);
unsigned int i;
void main(void)
{
InitSysCtrl ();
InitGpio ();
//DINT;
//InitPieCtrl ();
//IER = 0x0000;
//IFR = 0x0000;
//InitPieVectTable ();
//section in here
Gpio_setup ();
while (1)
{
EALLOW;
//Toggle_G10 ();
GpioDataRegs.GPADAT.bit.GPIO14 = 0;
//GPIO_WritePin(Blinkadiode, 0);
//delay (1000*500);
DELAY_US(1000*500);
//Toggle_G10 ();
GpioDataRegs.GPADAT.bit.GPIO14 = 1;
//GPIO_WritePin(Blinkadiode, 1);
DELAY_US(1000*500);
//delay (1000*500);
EDIS;
}
}
void Gpio_setup (void)
{
//pull up gpapud
//dir output
//gpio mux1
EALLOW;
GpioCtrlRegs.GPAMUX1.bit.GPIO14 = 0;//GPIO
GpioCtrlRegs.GPADIR.bit.GPIO14 = 1; //output
EDIS;
}
void Toggle_G14 (void)
{
EALLOW;
GpioDataRegs.GPATOGGLE.bit.GPIO14 = 1;
GpioDataRegs.GPATOGGLE.all = 0;
EDIS;
}
error #10234-D: unresolved symbols remain
warning #10063-D: entry-point symbol other than "_c_int00" specified: "code_start"
error #10010: errors encountered during linking; "blinkadiode.out" not built
>> Compilation failure
makefile:157: recipe for target 'blinkadiode.out' failed
gmake[1]: *** [blinkadiode.out] Error 1
gmake: *** [all] Error 2
makefile:150: recipe for target 'all' failed




