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.

CCS/TDA3XEVM: NetworkRxTx App not working

Part Number: TDA3XEVM

Tool/software: Code Composer Studio

Hello,

We have enabled the network_rx_tx app to work with the network_rx tool in the SDK. But we are getting the following error when we run it. What is going wrong?

[IPU1-0]    569.371378 s: Chains: Using TFDTP. Ensure using ��–-usetfdtp with network tools..
[IPU1-0]    569.394131 s:  CAPTURE: Create in progress !!!
[IPU1-0]    569.394314 s:  CAPTURE: VIP1 Slice0 PortA capture mode is [ 8-bit] !!!
[IPU1-0]    569.394436 s: captdrv/src/vpsdrv_capturePriv.c @ Line 266:
[IPU1-0]    569.394528 s: Invalid number of streams(0) - Supported max streams 8
[IPU1-0]    569.394619 s:  Assertion @ Line: 548 in captureLink_drv.c: pInst->captureVipHandle != NULL : failed !!!

-siddarth

  • Hi Siddarth,

    Which camera have you connected to the vision app board.
    You need to connect OV10635 and also set the video capture pins accordingly

    Regards
    Chetan.M
  • Hi Siddarth ,

    Any updates on this

    Regards
    Chetan.M
  • Hi Chetan,

    The network_rx_tx app uses video capture drivers from "vision_sdk/apps/src/rtos/video_sensor/src" which has the OV10635 driver.

    The iss_capture_isp_simcop_display app uses capture drivers from " vision_sdk/apps/src/rtos/iss/src/sensor" which has the OV10640 driver.

    We want to use the network_rx_tx app with the OV10640 camera. How do we make this possible?

    -siddarth

  • Hi Siddarth ,

    before running the usecase select the camera source .

    from main menu run 'S' the capture source .
    Depending on the capture source connected select the capture source.

    you can verify the same by printing the pObj->chainsCfg->captureSrc which is passed to ChainsCommon_StartCaptureDevice

    Regards
    Chetan.M
  • Yes we did all that. But the OV10640 camera is not supported in the network_rx_tx app. If you select it then it just fails at an assert statement. See log below. The prints we have added are with ATI.

    [IPU1-0]  Select use-case,
    [IPU1-0]  ----------------
    [IPU1-0]  1: Network RX + Display
    [IPU1-0]  2: Network RX + Decode + Display (TDA2x ONLY)
    [IPU1-0]  3: 1CH VIP Capture + Network TX
    [IPU1-0]  4: 1CH VIP Capture + Encode + Network TX (TDA2x ONLY)
    [IPU1-0]  5: 4CH VIP Capture + Network TX
    [IPU1-0]  
    [IPU1-0]  x: Exit
    [IPU1-0]  
    [IPU1-0]  Enter Choice:
    [IPU1-0]  
    [IPU1-0]     29.296040 s: ATI: In chains_networkTxCapture_SetAppPrms
    [IPU1-0]     29.296132 s: ATI: In ChainsCommon_SingleCam_SetCapturePrms
    [IPU1-0]     29.296223 s: ATI: captureSrc value=15
    [IPU1-0]     29.296284 s: ATI: captureSrc value=15
    [IPU1-0]     29.296346 s: ATI: captureSrc value=15
    [IPU1-0]     29.296407 s: ATI: captureSrc value=15
    [IPU1-0]     29.296468 s: ATI: captureSrc value=15
    [IPU1-0]     29.296529 s: ATI: captureSrc value=15
    [IPU1-0]     29.296559 s: ATI: captureSrc value=15
    [IPU1-0]     29.296620 s: ATI: captureSrc value=15
    [IPU1-0]     29.296681 s: ATI: captureSrc value=15
    [IPU1-0]     29.296742 s: ATI: captureSrc value=15
    [IPU1-0]     29.296803 s: Chains: Null Link
    [IPU1-0]     29.296864 s:
    [IPU1-0]  
    [IPU1-0]  Select Network Mode,
    [IPU1-0]  --------------------
    [IPU1-0]  1: TFDTP
    [IPU1-0]  2: TCP/IP
    [IPU1-0]  
    [IPU1-0]  Enter Choice:
    [IPU1-0]  
    [IPU1-0]     31.048709 s: Chains: Using TFDTP. Ensure using –-usetfdtp with network tools..
    [IPU1-0]     31.072622 s:  CAPTURE: Create in progress !!!
    [IPU1-0]     31.072805 s:  CAPTURE: VIP1 Slice0 PortA capture mode is [ 8-bit] !!!
    [IPU1-0]     31.072927 s: captdrv/src/vpsdrv_capturePriv.c @ Line 266:
    [IPU1-0]     31.073018 s: Invalid number of streams(0) - Supported max streams 8
    [IPU1-0]     31.073140 s:  Assertion @ Line: 548 in captureLink_drv.c: pInst->captureVipHandle != NULL : failed !!!

  • Please re-verify the capture and sensor configurations

    Regards
    Chetan.M
  • We added the TFDTP support for the /iss_capture_isp_simcop_display application. This enabled us to transmit the frames captured from the OV10640 camera to the network. On the receiving side we used the network_rx application. This has resolved our issue. Thanks for your help.

    -siddarth