I am using Karo QS8M-MQOO DevKit and as their usb port is 2.0 but purethermal uvc lepton 1.0 camera. When I try to stream it show error [ 2133.893482] uvcvideo 1-1.1.3:1.1: Failed to submit URB 0 (-28).
How can I solve this issue?
Even I try to Force USB 2.0 Mode but it wont work ?
Hello @Hasan_01
I hope you are doing very well.
What is the command to stream that you are using?
Looking at the driver, you are having issues in start_transfer function in this section:
Error -28 is ENOSPC, which in this context means "Not enough bandwidth for the isochronous transfers".
Do you have others USB devices connected to the USB?
If the camera is defaulting to a high bandwidth mode (e.g., MJPEG @ high FPS), it may exceed USB 2.0 capabilities. You can try reducing it:
v4l2-ctl --set-fmt-video=width=160,height=120,pixelformat=YUYV
I hope this can helps to you.
Best regards,
Salas.