From b73bf12d8f464a5ed02c9e8e5a0f5fba8c513d2a Mon Sep 17 00:00:00 2001 From: Brian Johnson Date: Thu, 21 Aug 2008 12:07:54 -0400 Subject: [PATCH] Added support for the 0c45:6253 camera This camera uses the same bridge and sensor as the 0c45:624f Signed-off-by: Brian Johnson --- microdia-usb.c | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/microdia-usb.c b/microdia-usb.c index 0f4f09c..98908c5 100644 --- a/microdia-usb.c +++ b/microdia-usb.c @@ -296,6 +296,21 @@ struct microdia_camera cameras[] = { .set_hvflip = ov965x_set_hvflip, }, { + .model = CAMERA_MODEL(USB_0C45_VID, USB_6253_PID), + .type = MICRODIA_VGA, + .sensor_slave_address = 0x30, + .sensor_flags = SN9C20X_I2C_2WIRE, + .supported_fmts = 0x03, + .initialize = microdia_624f_initialize, + .sensor_init = ov965x_initialize, + .start_stream = microdia_624f_start_stream, + .stop_stream = microdia_624f_stop_stream, + .flip_detect = microdia_624f_flip_detect, + .set_auto_exposure = ov965x_set_autoexposure, + .set_exposure = ov965x_set_exposure, + .set_hvflip = ov965x_set_hvflip, + }, + { .model = CAMERA_MODEL(USB_0C45_VID, USB_6260_PID), .type = MICRODIA_VGA, .sensor_slave_address = 0x21, -- 2.11.4.GIT