Hi,
I have 2 projects using CMake.
The first one is App. RTOS is in this project. This project exposes some functions by a table at fixed address. It also creates some private tasks.
The second one is Payload. App calls a function in Payload to do initialization, and Payload uses functions in App to do things like creating tasks.
When debugging Payload, though there’s actually RTOS running, I can’t see tasks or “FreeRTOS” tab in live watch. I tried to use gdb command “add-symbol-file build/VisualGDB/Debug/App/App 0x0” to load the symbol. After that I can see call stack back to RTOS layer. But still can’t see other tasks or “FreeRTOS” tab.
How to enable those features?
Regards,
Tianyi