// definition of configASSERT in Posix_GCC/FreeRTOSConfig.h
#define configASSERT( x ) if( ( x ) == 0 ) vAssertCalled( __FILE__, __LINE__ )
There some pointer invocation on configASSERT
// definition of configASSERT in Posix_GCC/FreeRTOSConfig.h
#define configASSERT( x ) if( ( x ) == 0 ) vAssertCalled( __FILE__, __LINE__ )
There some pointer invocation on configASSERT
FreeRTOSConfig.h is an application file - you can change the definition of configASSERT to whatever you like.