xQueueReceive

arunbm123 wrote on Tuesday, March 19, 2019:

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

rtel wrote on Tuesday, March 19, 2019:

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