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.

Linker Error

Other Parts Discussed in Thread: SYSBIOS

I'm using Code Composer Studio 4 to experiment with a Stellaris board and I've run into a snag using SYS/BIOS and timers.

I can create a new project with any of the sys/bios examples and it compiles, links and runs on the board just fine.  But I need to make an example for timers.  So I add the following:

 

#include <ti/sysbios/hal/Timer.h>

int main()
{
    Timer_Handle t = Timer_create(1, func, NULL, NULL);
  ....
}

The error I'm getting when I build is :  undefined symbol ti_sysbios_hal_Timer_Object__create__S

So I looked in hal/Timer.h and I see that one of the inline functions is calling ti_sysbios_dal_Timer_Object__create__S.  The problem is, this doesn't seem to be actually defined anywhere.  Does anybody know how I can get this to build?