STM32CubeIDE debug FreeRTOS queues
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2023-10-25 1:25 AM - edited ‎2023-10-25 1:28 AM
I am trying to view and debug the queues in my FreeRTOS project. To do this, I have to add the queues to registry with vQueueAddToRegistry. However, vQueueAddToRegistry takes an argument to a QueueHandle_t and in the project generated with STM32CubeMX I only have queue handles with the type osMessageQueueId_t. How do I get a QueueHandle_t that can be added to registry?
Solved! Go to Solution.
- Labels:
-
STM32CubeIDE
-
STM32CubeMX
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2023-10-25 2:50 AM
Figured this out that I can just do a type cast and it seems the queues are already in the registry as long as the registry size is configured to be big enough in CubeMX.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2023-10-25 2:50 AM
Figured this out that I can just do a type cast and it seems the queues are already in the registry as long as the registry size is configured to be big enough in CubeMX.
