The version i got ,spca5xx-20060402, doesn't have that
camera.
Check if the latest source code has that camera or try to
add it.
Try
to figure out if this camera is the same than one of the manufaturer's
models.
Add it on spca5xx.c files (Check the '===> to add
the stuff');
Recompile the spca5xx driver and try it. Good chance that it will
but there is no guaranty.
in
files spca5xx.c
static struct cam_list clist[] =
{
{UnknownCamera,
"Unknown"},
{IntelPCCameraPro, "Intel PC Camera
Pro"},
{IntelCreateAndShare, "Intel Create and
Share"},
{GrandtecVcap, "Grandtec
V.cap"},
.....
.....
{PhilipsSPC600NC, "Philips SPC600NC
"},
{PhilipsSPC300NC, "Philips SPC300NC
"},
{Sonix6019, "Sonix VGA Ov7630
"},
===> {CreativePCCam300, "Creative PC-CAM PD1100"},
{-1,
NULL}
};
#if LINUX_VERSION_CODE >
KERNEL_VERSION(2,3,0)
static __devinitdata struct usb_device_id device_table[] =
{
{USB_DEVICE(0x0733,
0x0430)}, /* Intel PC Camera Pro
*/
{USB_DEVICE(0x0733,
0x0401)}, /* Intel Create and Share
*/
....
...
.... (line below are similar to
what you have
{USB_DEVICE(0x041E,
0x400A)}, /* Creative PC-CAM 300
*/
{USB_DEVICE(0x084D, 0x0003)}, /*
D-Link DSC-350
*/
{USB_DEVICE(0x041E,
0x400B)}, /* Creative PC-CAM 600
*/
....
....
{USB_DEVICE(0x0c45,
0x6019)}, /* Generic Sonix OV7630
*/
{USB_DEVICE(0x0c45,
0x6024)}, /* Generic Sonix Tas5130c
*/
===>
{USB_DEVICE(0x041e,0x401A)}, /*
this is your new camera */
{USB_DEVICE(0x0000,
0x0000)}, /* MystFromOri Unknow Camera
*/
{}
/* Terminating entry
*/
};
Daniel
what application snapshot you are using?
--- In .com,
"Laks" <> wrote:
>
> Hi to every one
>
> I did the following to connect a Creative vista PD1100 webcam
with
ts7250 board
>
> i ended up with the following message
when i run an application snapshot
>
> "could not open
dev/video0"
>
> "no such device"
>
> I did the
following
>
> 1.insmod usbcore
> 2insmod pcipool
>
3insmod usb-ohci
> 4 insmod usb-ohci-ep93xx
> 5 insmod
videodev.o
> 6 insmod spca5xx.o
>
> for all these
inmoding i did not get any error
> except for the following when i
inserted the usb-ohci-ep93xx "
vend/prod 041e/401a is not claimed by any
active driver
> this is the vender and the product ID of my web
cam
>
> i used mknod /dev/video0 c 81 0
>
> to
create the dev/video0 since it was not created automatically by
inserting
the driver modules
>
> when i listed the modules using
lsmod
>
> i could see all the drivers inserted earlier
>
> -laks
>