xQueueReceive

hello friends, on this freertos page https://www.freertos.org/a00118.html ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ if( xQueueReceive( xQueue, &( pxRxedMessage ), ( TickType_t ) 10 ) ) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Why the reciving Buffer is writeen &(pxRxedMessage) and not &pxRxedMessage Thanks

xQueueReceive

This is purely stylistic preference, it makes no difference to the execution of the code.