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 symbol exosite_write

Hi,

   I can't seem to figure out what is causing this error below. 

unresolved symbol exosite_write, first referenced in ./cloud_demo.obj

cloud_demo() is called at my main c file. The exosite_write() function is declared at C:\EK-TM4C129\exosite\exosite.h. I set at Include Options "${TIVAWARE_ROOT}/exosite". Where TIVAWARE_ROOT = C:\EK-TM4C129. 

Any ideas why I am getting this error?

#include "exosite.h"
#include "exosite_pal.h"

/*****************************************************************************
*
* cloud_demo
*
* \param None
*
* \return None
*
* \brief The Exosite Cloud main application
*
*****************************************************************************/
void cloud_demo( void )
{
exosite_write("windspeed=55",12);
}