We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
Hi,
I'm using ARM DS-5 for my current project. In my workspace, there are two projects: test and test_bsp. My purpose is that the "test_bsp" project includes header and source files, and the application project only needs to call the functions. In the project properties, I've included the paths of all the source and header files in the "test_bsp". However, when I'm trying to build the project, I've still got an error: L2618E: Undefined symbol (my function) (referred from main.o). Here is an example:
In project "test":
main.c:
#include <stdio.h>
#include <test.h>
int main (void)
{
printTest(); //This is where the build errors L6218E undefined symbol are
return 0;
}
In project "test_bsp":
test.h:
void printTest();
test.c:
void printTest()
print("Test");