Hello, I’m porting four customized sensors to Jetson NX. Use the "13_argus_multi_camera " demo, command is “argus_multi_camera -n 2” (3 for 4), it will stop at “Reander frame 1” and found the follow error message on dmesg
[RCE] ERROR: camera-ip/vi5/vi5.c:745 [vi5_handle_eof] "General error queue is out of sync with frame queue. ts=1194166574144 sof_ts=1194654200608 gerror_code=2 gerror_data=400060 notify_bits=400000
I had done follow test
1, 4 IMX219 sensor, command: argus_multi_camera -n 4 : is OK
2, 4 customized sensors, command: nvgstcapture --sensor-id=0, (1, 2, or 3 ), is OK
3, 4 customized sensors, command: argus_multi_camera -n 1, is OK
may I know which Jetpack release you’re now using?
there’re some bug fixes, if that’s possible, please moving to the latest release version, i.e. l4t-r35.3.1
please also have a try with v4l standard controls to fetch the camera stream.
please check you’re able to launch all these four camera stream simultaneously.
for example, $ v4l2-ctl -d /dev/videoX --set-fmt-video=width=1920,height=1080,pixelformat=RG10 --set-ctrl bypass_mode=0 --stream-mmap --stream-count=6000
is there total 4 video node created for your system? i.e. $ ls /dev/video*
that’s V4L2 IOCTL to verify basic camera functionality, so, there might be issue with video0, you may also try fetch the stream via other nodes for confirmaiton.
Q: is there total 4 video node created for your system? i.e. $ ls /dev/video*
A: Yes, have 4 video nodes and test ok use command: nvgstcapture --sensor-id=0, (1, 2, or 3 )
Try other nodes, same error.
I will check the sensor driver again
there’s should be no issues with the basic VI driver.
I have Orin NX/r35.3.1/IMX477 on hand, it’s verified that sanity test has passed with the reference camera driver,
for example,
$ v4l2-compliance
Driver Info:
Driver name : tegra-video
Card type : vi-output, imx477 9-001a
Bus info : platform:tegra-capture-vi:0
Driver version: 5.10.104
...
Buffer ioctls:
test VIDIOC_REQBUFS/CREATE_BUFS/QUERYBUF: OK
test VIDIOC_EXPBUF: OK
Total: 42, Succeeded: 42, Failed: 0, Warnings: 0
could you please examine the sensor driver,
you may see-also Camera Driver Porting for reference,
thanks