Home
last modified time | relevance | path

Searched refs:queueStatus (Results 1 – 1 of 1) sorted by relevance

/FreeRTOS-Plus/Demo/Common/coreMQTT_Agent_Interface/
A Dfreertos_agent_message.c50 BaseType_t queueStatus = pdFAIL; in Agent_MessageSend() local
54queueStatus = 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() local
70queueStatus = xQueueReceive( pMsgCtx->queue, pReceivedCommand, pdMS_TO_TICKS( blockTimeMs ) ); in Agent_MessageReceive()
73 return ( queueStatus == pdPASS ) ? true : false; in Agent_MessageReceive()

Completed in 14 milliseconds