Solved
Empty list of window "FreeRTOS Semaphores" in STM32CubeIDE 1.5.0 (STM32F746Nucleo)
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?