Searched refs:queueStatus (Results 1 – 1 of 1) sorted by relevance
50 BaseType_t queueStatus = pdFAIL; in Agent_MessageSend() local54 … queueStatus = xQueueSendToBack( pMsgCtx->queue, pCommandToSend, pdMS_TO_TICKS( blockTimeMs ) ); in Agent_MessageSend()57 return ( queueStatus == pdPASS ) ? true : false; in Agent_MessageSend()66 BaseType_t queueStatus = pdFAIL; in Agent_MessageReceive() local70 … queueStatus = xQueueReceive( pMsgCtx->queue, pReceivedCommand, pdMS_TO_TICKS( blockTimeMs ) ); in Agent_MessageReceive()73 return ( queueStatus == pdPASS ) ? true : false; in Agent_MessageReceive()
Completed in 14 milliseconds