2020-12-09 12:33 AM
iTrying to watch semaphores status, inited by LWIP cubeMX. And see empty window. I know that semaphores created (for example) in lwip.c file
/* create a binary semaphore used for informing ethernetif of frame reception */
osSemaphoreDef(Netif_SEM);
Netif_LinkSemaphore = osSemaphoreCreate(osSemaphore(Netif_SEM) , 1 );
But cannot see any of them in freertos window:
the window with monitoring tasks is working.What should i do to enable semaphore monitoring function?
Solved! Go to Solution.
2020-12-09 07:41 AM
The queue names must be added to the registry, see "6.2.2 Add to registry" in STM32CubeIDE user guide (UM2609)
2020-12-09 07:41 AM
The queue names must be added to the registry, see "6.2.2 Add to registry" in STM32CubeIDE user guide (UM2609)
2020-12-10 12:54 AM
Thanks a lot!!! It helps. The question is closed