\r
signed portBASE_TYPE xQueueSend( xQueueHandle pxQueue, const void *pvItemToQueue, portTickType xTicksToWait )\r
{\r
-signed portBASE_TYPE xReturn = pdFAIL;\r
+signed portBASE_TYPE xReturn = pdPASS;\r
xTimeOutType xTimeOut;\r
\r
/* Make sure other tasks do not access the queue. */\r
\r
signed portBASE_TYPE xQueueReceive( xQueueHandle pxQueue, void *pvBuffer, portTickType xTicksToWait )\r
{\r
-signed portBASE_TYPE xReturn = pdFAIL;\r
+signed portBASE_TYPE xReturn = pdTRUE;\r
xTimeOutType xTimeOut;\r
\r
/* This function is very similar to xQueueSend(). See comments within\r