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.
Hi all,
I am trying to build a code in ccs but the issue is there an error that pops up everytime i build the project.
i included the .h header files in properties of project.the code is compiled successfully if i dont write anything in main code.
for example:
#include <stdint.h>
#include <stdbool.h>
#include "inc/hw_memmap.h"
#include "driverlib/gpio.h"
#include "driverlib/sysctl.h"
int main(void) {
return 0;
}
however every time i write a function in the main code there's an error
for example:
#include <stdint.h>
#include <stdbool.h>
#include "inc/hw_memmap.h"
#include "driverlib/gpio.h"
#include "driverlib/sysctl.h"
int main(void) {
SysCtlPeripheralEnable(SYSCTL_PERIPH_GPIOF)
return 0;
}
i think i didnt link the .c extension headers in project.
i checked the blinky project which didnt had any .c header added,but still it compiles successfully.
PLease suggest how to link all.c files like .h files??
Vineet,
You are likely missing compiler include paths (which are required to "find" header files that are #included in C code), linker include paths and/or library files (such as driverlib.lib, that usually contain definitions for functions referenced in your C code).
As suggested by Markel, please start with TivaWare examples, and take a close look at the compiler and linker include paths and libraries that are linked to the project. The CCS Fundamentals Workshop is also a great starting point.
This wiki page on some common build errors in CCS might also be helpful: http://processors.wiki.ti.com/index.php/Build_Errors_in_CCS