queue - useful functions required or struct

nobody wrote on Saturday, September 16, 2006:

it would be nice add to queue.h xQUEUE structure definition or more function. My need now is using pxQueue->uxMessagesWaiting from ISR…

Janus

nobody wrote on Sunday, September 17, 2006:

The data type is deliberately hidden to prevent direct access.  This enables the queue implementation to change without effecting application code.

For your particular needs you could add a simple get function (without the critical sections so it can be used from the ISR), or move the queue definition to the header file.

nobody wrote on Sunday, September 17, 2006:

yes, I’ve done:
unsigned portBASE_TYPE uxQueueMessagesWaitingFromISR( xQueueHandle pxQueue )    // JU
{
    return pxQueue->uxMessagesWaiting;
}

but it would be nice to be compatible with original the OS…

best regards
Janusz