This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

Errors in program

#include <F28x_Project.h>

int main(void)
{
//init system clocks and get board speed running at 200 MHz
//your board will run at 100 MHz if you do not have all the predefines!
InitSysCtrl();
EALLOW;
GpioCtrlRegs.GPADIR.bit.GPIO31 = 1; //set blue light on LP as an output
while(1){
//delay for 1 second
DELAY_US(1E6);
//toggle the light
EALLOW;
GpioDataRegs.GPATOGGLE.bit.GPIO31 = 1;
}
}

errors

Description Resource Path Location Type
#10010 errors encountered during linking; "prova55.out" not built prova55 C/C++ Problem
#10056 symbol "_InitPieVectTable" redefined: first defined in "./Common/F2837xD_PieVect.obj"; redefined in "./Common/F2837xD_SWPrioritizedPieVect.obj" prova55 C/C++ Problem
#10056 symbol "_PieVectTableInit" redefined: first defined in "./Common/F2837xD_PieVect.obj"; redefined in "./Common/F2837xD_SWPrioritizedPieVect.obj" prova55 C/C++ Problem
gmake: *** [all] Error 2 prova55 C/C++ Problem
gmake[1]: *** [prova55.out] Error 1 prova55 C/C++ Problem