derekmolloy / boneCV

Beaglebone Webcam and OpenCV Examples Repository
161 stars 89 forks source link

Error while running the capture.c file #4

Closed itsashis4u closed 9 years ago

itsashis4u commented 9 years ago

While running the command ./capture -Fc 600 -o > output.raw I get an error saying select timeout

I did what it has been said in the video. Is there anything wrong in my approach?

Please let me know if I am wrong

Attached screenshot of the error

Thank You

beagle

derekmolloy commented 9 years ago

You need to change the time-out properties of the uvcvideo LKM as follows: molloyd@beaglebone:∼$ sudo rmmod uvcvideo molloyd@beaglebone:∼$ sudo modprobe uvcvideo nodrop=1 timeout=5000 molloyd@beaglebone:∼$ lsmod |grep uvcvideo uvcvideo 57013 0 videobuf2_vmalloc 2490 1 uvcvideo

kmontep commented 6 years ago

Thank you Montep