Hi Karry, Very good job ! I tested and it works perfectly ! As you show in your video I just need to decrease brightness and the image become very good ! The image is in black & white with the s5k83a branch instead of the m5602/ branch with is in color but it's a very good progress !
Another thing, for me, the detection of my s5k83a sensor didn't work and
with the Gregory Lardiere's patch, the detection is correct ! I attach his
patch, I just change the order of the probe_sensor function as Gregory asked
me :
static int m5602_probe_sensor(struct m5602_camera *cam)
{
/* Try the mt9m111 sensor */
cam->sensor = &mt9m111;
if (!cam->sensor->probe(cam))
return 0;
/* Try the s5k4aa */
cam->sensor = &s5k4aa;
if (!cam->sensor->probe(cam))
return 0;
/* Try the s5k83a */
cam->sensor = &s5k83a;
if (!cam->sensor->probe(cam))
return 0;
/* Try the ov9650 */
cam->sensor = &ov9650;
if (!cam->sensor->probe(cam))
return 0;
/* Try an unidentified sensor */
cam->sensor = &po1030;
if (!cam->sensor->probe(cam))
return 0;
Thinks to all of you who help to develop the driver !
Regards,
Arnaud
detection_fix.patch
Description: Binary data
------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________ M560x-driver-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/m560x-driver-devel
