pixma: fix MP830 ADF shifted lines, add support for I-SENSYS MF4320d to pixma.desc

merge-requests/1/head
Nicolas Martin 2009-10-22 22:01:54 +02:00
rodzic fb0a60f625
commit f2c663ffb1
3 zmienionych plików z 28 dodań i 2 usunięć

Wyświetl plik

@ -1,3 +1,7 @@
2009-10-22 Nicolas Martin <nicols-guest at users.alioth.debian.org>
* backend/pixma_mp150.c, doc/descriptions/pixma.desc:
pixma: fix MP830 ADF shifted lines, add support for I-SENSYS MF4320d to descriptions.
2009-10-22 Louis Lagendijk <llagendijk at users.alioth.debian.org>
* doc/sane-pixma.man
Added networking details to doc/sane-pixma.man

Wyświetl plik

@ -615,11 +615,21 @@ calc_shifting (pixma_t * s)
case MP800R_PID:
case MP830_PID:
mp->color_shift = s->param->ydpi / ((s->param->ydpi < 1200) ? 150 : 75);
if (is_scanning_from_tpu (s))
mp->color_shift = s->param->ydpi / 75;
mp->shift[1] = mp->color_shift * get_cis_ccd_line_size (s);
mp->shift[0] = 2 * mp->shift[1];
mp->shift[2] = 0;
if (is_scanning_from_adf (s))
{ /* ADF */
mp->shift[0] = 0;
mp->shift[2] = 2 * mp->shift[1];
}
else
{ /* Flatbed or TPU */
mp->shift[0] = 2 * mp->shift[1];
mp->shift[2] = 0;
}
break;
case MP810_PID:

Wyświetl plik

@ -423,6 +423,12 @@
:status :good
:comment "Flatbed and ADF scan. All resolutions supported (up to 600DPI)"
:model "imageCLASS MF4370dn"
:interface "USB"
:usbid "0x04a9" "0x26ec"
:status :good
:comment "Flatbed and ADF scan. All resolutions supported (up to 600DPI)"
:model "imageCLASS MF4380dn"
:interface "USB"
:usbid "0x04a9" "0x26ec"
@ -441,6 +447,12 @@
:status :good
:comment "Flatbed and ADF scan. All resolutions supported (up to 600DPI)"
:model "I-SENSYS MF4320d"
:interface "USB"
:usbid "0x04a9" "0x26ee"
:status :good
:comment "All resolutions supported (up to 600DPI)"
:model "imageCLASS MF4010"
:interface "USB"
:usbid "0x04a9" "0x26b4"