plek324 wrote on Monday, February 29, 2016:
Hi,
The file FreeRTOS.h contains the following code starting at line 925:
#if( configNUM_THREAD_LOCAL_STORAGE_POINTERS > 0 )
void pvDummy15[ configNUM_THREAD_LOCAL_STORAGE_POINTERS ];
#endif
This generates an error if configNUM_THREAD_LOCAL_STORAGE_POINTERS!=0, because you declare an array of void. I assume this should be void pointers?