xQueueEmpty() ?

There is method or function to empty a queue or i can only do it with receive loop?
I cant see any empty method in API.

xQueueEmpty() ?

There is a new xQueueReset() macro, but it is not released yet.  If you want to use it then you need queue.c and queue.h from the SVN repository.  xQueueReset() in queue.h calls xQueueGenericReset() in queue.c (you should use the macro, not the function). http://freertos.svn.sourceforge.net/viewvc/freertos/trunk/Source/queue.c?view=log
http://freertos.svn.sourceforge.net/viewvc/freertos/trunk/Source/include/queue.h?view=log Regards.

xQueueEmpty() ?

Thanx! it would be very helpful, i am sending data to thermal printer and have to watch paper end or mulfunction and if so i have to empty printer buffer :)

xQueueEmpty() ?

It works perfect :) loop of receives from queue just deleted:)