This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

TDA3XEVM: TDA3XEVM: ROV not showing all running tasks when breakpointing use case

Part Number: TDA3XEVM

Hello all,

I'm currently trying to become more familiar with the links and chains framework of the TDA3X and the use cases themselves. In order to do so, I've set up my ROV and attempted to look at some running tasks (links are tasks if I'm not mistaken).

Hardware: TDA3XEVM, Camera: Leopard OV10640 720P30 CSI2, external capture card connected via HDMI to visualize output.

Software: Latest version of CCS 12.60, Vision SDK 3.8 from December 2019 (latest version as well), XDC Tools + TI-RTOS (SYS/BIOS) has been added to products as well.

USECASE: 1CH ISS capture + iss isp + iss ldc+vtnf + display

This is the ISS Use Case graphic I'm currently running. The individual links are what I really am interested in taking a look at. For example Display_Video; after putting breakpoints in the displayLink_tsk.c file displayLink_init, I should be in theory able to visualize the task running.

Utils_tskCreate is what I assume to be the general wrapper function intended to create all links when specified with the correct LINKNAME_main function. This breakpoint however is skipped. After setting another one in the display_Main function and stepping through I reached this point:

I assume "DISPLAY: Start Done" UART message signals that everything regarding the display initialization is finished and that the task itself exists, therefor I should see it if I press step over until I exit. However, the ROV only shows me following after pausing on IPU0_1:

detailed ONLY shows the idle loop.

ReadyQS shows following:

I understand why Utils_tskMain is showing, probably because it is the wrapper for all the links the same way that the Utils_tskCreate is? But I should be seeing all the other links running as well.

Can anybody help out? I'm trying to get more familiar with the entirety of the framework as well, so if anybody has any tips regarding that they'd be much appreciated.