Skip to main content
GShch.1
Associate
December 9, 2020
Solved

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

  • December 9, 2020
  • 2 replies
  • 1312 views

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?

This topic has been closed for replies.
Best answer by KnarfB

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

2 replies

KnarfB
KnarfBBest answer
Super User
December 9, 2020

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

GShch.1
GShch.1Author
Associate
December 10, 2020

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