Hi
I am using TDA3x_RVP board. I want to stream a captured video onto my PC through Ethernet.
I have followed the steps mentioned in PROCESSOR_SDK_VISION_03_07_00_00/vision_sdk/apps/tools/network_tools/docs/ VisionSDK_UserGuide_NetworkTools.docx.
I have connected my Ubuntu 18.04 PC directly to TDA3x_RVP board through ethernet cable.
I have enabled Static IP and the below code
if (enableStaticIpEth0)
{
/* Settings for static IP configuration */
Ip.address = "192.168.1.200";
Ip.mask = "255.255.255.0";
Ip.gatewayIpAddr = "192.168.1.1";
Ip.ifIdx = 1;
}
Also after switching on the RVP, I am getting my IP address as,
Current System Settings,
[IPU1-0] 4.093271 s: ========================
[IPU1-0] 4.093332 s: Display Type : HDMI 1920x1080 @ 60fps
[IPU1-0] 4.093424 s: Capture Source : Sensor OV10640 IMI 1280x720 @ 30fps - ISS CSI2, Bayer (TDA3x EVM ONLY)
[IPU1-0] 4.093515 s: My IP address for interface 1 : 192.168.1.200
When I am trying to ping the RVP board with 192.168.1.200 IP from the PC (given IP say, 192.168.1.201), I am getting "Destination Host Unreachable" error.
How to solve this error.
