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.

Unresolved Symbols in /main.obj

Other Parts Discussed in Thread: TEST2

While attempting to build some of the peripheral examples from the TivaWare, specifically the ADC ones, CCS returns these errors 

Description Resource Path Location Type
unresolved symbol UARTStdioConfig, first referenced in ./main.obj adc_test2 C/C++ Problem
unresolved symbol UARTprintf, first referenced in ./main.obj adc_test2 C/C++ Problem
<a href="file:/c:/ti/ccsv6/tools/compiler/dmed/HTML/10234.html">#10234-D</a> unresolved symbols remain adc_test2 C/C++ Problem
#10010 errors encountered during linking; "adc_test2.out" not built adc_test2 C/C++ Problem

From what I can tell it's because the linker can't find the files. If I add copies uartstdio.h and uartstdio.c dirrectly into the project file it works. The thing is the TivaWare directory is part of my include path and uartstio.h and uartstdio.c are both in the /utils directorty that is called in the include. 

Any idea as to why they couldn't be found? I am looking for another solution other than just copying the files into the project folder from Windows Explorer.

#include <stdbool.h>
#include <stdint.h>
#include "inc/hw_memmap.h"
#include "driverlib/adc.h"
#include "driverlib/gpio.h"
#include "driverlib/pin_map.h"
#include "driverlib/sysctl.h"
#include "driverlib/uart.h"
#include "utils/uartstdio.h"

These are my includes and the rest of them work.