kopia lustrzana https://gitlab.com/sane-project/backends
pixma: fix MP830 ADF shifted lines, add support for I-SENSYS MF4320d to pixma.desc
rodzic
fb0a60f625
commit
f2c663ffb1
|
@ -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
|
||||
|
|
|
@ -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:
|
||||
|
|
|
@ -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"
|
||||
|
|
Ładowanie…
Reference in New Issue