Part Number: TM4C1294NCPDT
Other Parts Discussed in Thread: SYSBIOS
Tool/software: Code Composer Studio
I am using CCS v7.2.0.00013, Compiler v16.9.4.LTS RTOS v2.16.1.4 and XDCtools v3.32.0.06_core
I have added an Event_pend in a task and a corresponding Event_post elsewhere in the program.
I created an event handle for it in the XCONF section under TI-RTOS->Products->SYSBIOS->Synchronization->Event->Instance Settings
But when I compile the program I get an error that the event handle is unidentified.
I did a full clean but still got the error.
I added an extern processor line with the event handle name and it works fine.
I have never had to add an extern for a handle in the past. Did I forget something?
The event handle I created is named doSystemReset and I had to add the line extern ti_sysbios_knl_Event_Handle doSystemReset;