Hello everyone.
I have a Jetson Orin NX and a Tamron 1080p camera connected to the this board that also has a UART-TTL USB Adapter connected so that we can get a serial COM port and send VISCA commands to it. That all works, but I have an issue with generating the preview of the camera when it is connected to the board.
Connection to the camera alone works great with 1080p 30fps, but we need to board for the VISCA commands and that additional boost of 30fps as the target is 1080p 60fps. The board requires a VISCA command to be sent in order for this to be achieved, to put the camera in Dual LVDS mode. I am sending that command and the reply is successful and acknowledged, but even setting Dual or Single mode, none of the pipelines with GStreamer or other software show the camera preview whatsoever.
qv4l2 opens a window with green color only. The simple GStreamer pipeline that works for other cameras, such as:
gst-launch-1.0 v4l2src device=/dev/video4 ! 'video/x-raw, width=1920, height=1080' ! xvimagesink -e
opens a window with black screen.
Here is an output of v4l2-ctl --list-devices
:
NVIDIA Tegra Video Input Device (platform:tegra-camrtc-ca):
/dev/media0
Active Silicon Harrier T3010-2: (usb-3610000.xhci-1):
/dev/video4
/dev/video5
/dev/media3
GuideCamera (usb-3610000.xhci-3.1.1.3.1):
/dev/video0
/dev/video1
/dev/media1
USB 4K HD Camera: USB 4K HD Cam (usb-3610000.xhci-3.1.1.3.4):
/dev/video2
/dev/video3
/dev/media2
The device is being discovered in dmesg
as well:
[ 840.382719] usb 2-1: new SuperSpeed Gen 1 USB device number 3 using tegra-xusb
[ 840.406683] usb 2-1: New USB device found, idVendor=0403, idProduct=602a, bcdDevice= 0.01
[ 840.406691] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=7
[ 840.406694] usb 2-1: Product: Active Silicon Harrier T3010-2
[ 840.406697] usb 2-1: Manufacturer: Active Silicon
[ 840.406699] usb 2-1: SerialNumber: C-1727520461-TNMP3010-2
[ 840.410091] uvcvideo: Found UVC 1.10 device Active Silicon Harrier T3010-2 (0403:602a)
Not sure if this is a UVC issue or some other driver issue, but any help would be highly appreciated.
Thanks in advance.