Which CPU are you using?
Which FreeRTOS version are you using?
Do you have a basic FreeRTOS application running.
Does the queue ever work or do you always have this problem?
What is posting to the queue?
How is the queue created?
1. CPU: LPC1768
2. FreeRTOS Version: v7.4.0
3. I have 3 tasks ruing , a Task in to blocked when query is full with xTicksToWait=portMAX_DELAY, even the queue become to empty by other task.
4. I post an integer data pointer to the queue (size=4), queue length = 1
5. queue create by xQueueCreate
Note:
If parameter xTicksToWait is 100, all task are work fine.
Have you ensured all the points listed on the following two pages have been followed? As you are using a Cortex-M the second page is important if you are sending to the queue from an ISR.