Part Number: AM4378
I have AM4378 Evaluation board(www.ti.com/.../tmdxsk437x). Built images using yocto by following http://processors.wiki.ti.com/index.php/Processor_SDK_Building_The_SDK#Build_Steps.
When I tried to stream data using gstreamer using following command, it failed with the error "WARNING: erroneous pipeline: could not link v4l2src0 to fbdevsink0".
#gst-launch-1.0 v4l2src ! video/x-raw, format=uyvu, width=1280, height=720 ! fbdevsink device=/dev/fb0
WARNING: erroneous pipeline: could not link v4l2src0 to fbdevsink0
But the following command using "videotestsrc" is working fine.
#gst-launch-1.0 videotestsrc ! video/x-raw, width=1280, height=720 ! fbdevsink device=/dev/fb0
Setting pipeline to PAUSED ...
Pipeline is PREROLLING ...
Pipeline is PREROLLED ...
Setting pipeline to PLAYING ...
New clock: GstSystemClock
As per the device tree source, camera module is on I2C1 and address is 0x30. When I tried with i2cdetect it is showing UU for address 0x30. Why it is showing as UU for camera, anyone faced this issue.
root@am437x-evm:~# i2cdetect -y -r 1
0 1 2 3 4 5 6 7 8 9 a b c d e f
00: -- -- -- -- -- -- -- -- -- -- -- -- --
10: -- -- -- -- -- -- -- -- 18 -- -- UU -- -- -- --
20: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
30: UU -- -- -- -- -- -- -- UU -- -- -- -- -- -- --
40: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
50: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
60: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
70: -- -- -- -- -- -- -- --
root@am437x-evm:~#
As per the schematics GPIO line is connected to powerdown line of camera. Before checking with powerdown line thought of checking the gstreamer pipeline used for streaming is proper and anyone has faced the similar issue on AM4378 Evaluation board?
I have also tried with camera GUI application available in the sdk(screen shot attached), but it is also showing blank screen when select capture button.
