cancel
Showing results for 
Search instead for 
Did you mean: 

Empty list of window "FreeRTOS Semaphores" in STM32CubeIDE 1.5.0 (STM32F746Nucleo)

GShch.1
Associate

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:

0693W000006F62gQAC.pngthe window with monitoring tasks is working.0693W000006F63oQAC.pngWhat should i do to enable semaphore monitoring function?

1 ACCEPTED SOLUTION

Accepted Solutions
KnarfB
Principal III

The queue names must be added to the registry, see "6.2.2 Add to registry" in STM32CubeIDE user guide (UM2609)

View solution in original post

2 REPLIES 2
KnarfB
Principal III

The queue names must be added to the registry, see "6.2.2 Add to registry" in STM32CubeIDE user guide (UM2609)

GShch.1
Associate

Thanks a lot!!! It helps. The question is closed