2023-11-10 03:54 AM
Hi,
I have a problem during creation of Semaphore in STM32CubeIDE. When I create a semaphore (dynamic or static) and add it to register view then.... nothing happens. I discovered that issue when in fact this mutex behaves as it wouldn't be created ever (taking it, results in time out). In exactly same way, I do create other semaphores/mutex in the system and all fine. I was making tests and observed:
Any ideas?
Thanks
Marcin
Solved! Go to Solution.
2023-11-10 04:06 AM
There is limitation in freeRTOS of queue in registry, limited in my case to 8 (I have had already 2 standard queues), so just 6 places left, not allowing 7th to be created.
Issue sorted.
2023-11-10 04:06 AM
There is limitation in freeRTOS of queue in registry, limited in my case to 8 (I have had already 2 standard queues), so just 6 places left, not allowing 7th to be created.
Issue sorted.