2023-10-25 01:25 AM - edited 2023-10-25 01: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.
2023-10-25 02: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.
2023-10-25 02: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.