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.

RTOS/TDA2PXEVM: Setting App Params in a Capture+ Display Use case

Part Number: TDA2PXEVM

Tool/software: TI-RTOS

Hi All,

I am working on VSDK 3.05. I am working on a decoder which takes data from 4 cameras and sends the data on the 2 lanes of CSI2 PHY2 with the resolution 640x480.

As the decoder contains an ISP I am not using M2mIspLink and Alg_IssAewb. The use case contains Capture + Display. I am having issues in setting display params.

I am refering to the use case iss_capture_isp_simcop_display. 

My doubt is in the function UseCase_SetAppPrms().As M2mIsp link is not used I have not used the following variables in my use case object.

IssM2mSimcopLink_ConfigParams simcopConfig;

vpsissldcConfig_t ldcCfg;

vpsissvtnfConfig_t vtnfCfg;

IssM2mSimcopLink_OperatingMode simcopMode;

Bool bypassVtnf;

Bool bypassLdc;

Due to this I have not set simcopMode, bypassVtnf,, bypassLdc in function UseCase_SetAppPrms() .

Will this create any issues, as I do not have the decoder with me right now,I cannot test it.So just wanted to ask whether this is fine or not?

 

Regards,

Deepika

  • Deepika,

    I see in your usecase that you are not using simcop link, so you dont need to set/use these two flags..
    You just need to set capture parameter correctly and forward captured frames to display..
    Please note display will only display one of the incoming stream.. by default 0.

    Rgds,
    Brijesh
  • Thanks Brijesh,

    I am preparing two use cases,one use case just to verify the decoder and its configuration.
    Once that is verified we can create another use case for surround view.

    Thanks for your immediate reply.