Hi,
I tried to compile a project using the driver lib sysctl but the built failed. I got the following errors:
undefined first referenced
symbol in file
--------- ----------------
SysCtlDelay ./main.obj
error #10234-D: unresolved symbols remain
error #10010: errors encountered during linking; "delay_test.out" not built
This is the code I tried to compile:
#include <inc/hw_types.h>
#include <driverlib/SysCtl.h>
void main(void)
{
SysCtlDelay(1);
while (1);
}
In the build settings I added the path of the stellaris ware: "C:\StellarisWare". Additionally there is the standart include path "${CG_TOOL_ROOT}/include" in the list.
I checked different threads in the forum and read the CCS documentation http://processors.wiki.ti.com/index.php/Include_paths_and_options but I didn't found a solution which solves my problem.
How can I solve the problem?
Regards Jannis