Hi TI members:
We have one TDA4VM customer board,
Recently we try the vx_app_tidl_od.out on our customer board,
and we find there is one issue that our MSC1 always run 0%, like below picture
and compare the vision_apps document, the MSC1 should have 9% usage-rate.
After this, I try to modify the app_create_graph_img_mosaic in psdkra/vision_apps/modules/src/app_img_mosaic_module.c, like below
diff --git a/modules/src/app_img_mosaic_module.c b/modules/src/app_img_mosaic_module.c index 7b26def..32308ae 100644 --- a/modules/src/app_img_mosaic_module.c +++ b/modules/src/app_img_mosaic_module.c @@ -190,7 +190,7 @@ vx_status app_create_graph_img_mosaic(vx_graph graph, ImgMosaicObj *imgMosaicObj #ifdef x86_64 vxSetNodeTarget(imgMosaicObj->node, VX_TARGET_STRING, TIVX_TARGET_DSP1); #else - vxSetNodeTarget(imgMosaicObj->node, VX_TARGET_STRING, TIVX_TARGET_VPAC_MSC1); + vxSetNodeTarget(imgMosaicObj->node, VX_TARGET_STRING, TIVX_TARGET_VPAC_MSC2); #endif vxSetReferenceName((vx_reference)imgMosaicObj->node, "mosaic_node"); }
But after this modify on our customer board, I still see the MSC0 have value, MSC1 still null.
So I have some questions:
1. Do the MSC1 didn't run is normal when we run the vx_app_tidl_od.out demo?
2. As my modify, does the TIVX_TARGET_VPAC_MSC2 just mean the MSC1?
or does I miss some code that need to modify for MSC1? so I can't see the MSC1 run.
Can someone help to answer?