Question
FreeRTOS hangs on xQueueSend
My program hangs on xQueueSend call:
if (xQueueSend(msg_queueHandle, (void *)&msg, 10) != pdTRUE) {
When I step through the code, I see it reaches the xQueueGenericSend function but exits on the first line of that function where the following is called:
configASSERT( pxQueue );
Any ideas on why configASSERT would always exit the function?
