kopia lustrzana https://gitlab.com/sane-project/backends
fixed multiple Avision regressions: most scanner basically did not
work at all anymore, ... range initilaizer, clobbering paper-length window bits, ...) introduced over the past years, added support for newer ASIC gamma table size, added AV220D2+ IDmerge-requests/1/head
rodzic
24ab521a1d
commit
d5c7e22328
|
@ -1,4 +1,10 @@
|
|||
2015-04-04 Stéphane Voltz <stef.dev@free.fr>
|
||||
2015-03-12 René Rebe <rene@exactcode.de>
|
||||
* doc/descriptions/avision.desc, backend/avision.c:
|
||||
fixed multiple regressions (range initilaizer, clobbering
|
||||
paper-length window bits, ...) introduced over the past years, added
|
||||
support for newer ASIC gamma table size, added AV220D2+ ID
|
||||
|
||||
2015-03-04 Stéphane Voltz <stef.dev@free.fr>
|
||||
* doc/descriptions/genesys.desc: mark LiDE 220 as unsupported.
|
||||
|
||||
2015-03-02 Stéphane Voltz <stef.dev@free.fr>
|
||||
|
|
|
@ -39,25 +39,22 @@
|
|||
|
||||
*****************************************************************************
|
||||
|
||||
This backend is based upon the Tamarack backend and adapted to the Avision
|
||||
scanners by René Rebe and Meino Cramer.
|
||||
|
||||
This file implements a SANE backend for the Avision SCSI Scanners (like the
|
||||
AV 630 / 620 (CS) ...) and some Avision (OEM) USB scanners (like the HP 53xx,
|
||||
74xx, Minolta FS-V1 ...) or Fujitsu ScanPartner with the AVISION SCSI-2/3
|
||||
or USB command set.
|
||||
or USB command set and written by René Rebe and Meino Cramer.
|
||||
|
||||
|
||||
Copyright 2002 - 2015 by
|
||||
"Ren Rebe" <rene@exactcode.de>
|
||||
|
||||
Copyright 1999, 2000, 2001 by
|
||||
"René Rebe" <rene@exactcode.de>
|
||||
"Meino Christian Cramer" <mccramer@s.netic.de>
|
||||
|
||||
Copyright 2002 by
|
||||
"René Rebe" <rene@exactcode.de>
|
||||
"Jose Paulo Moitinho de Almeida" <moitinho@civil.ist.utl.pt>
|
||||
|
||||
Copyright 2003, 2004, 2005, 2006, 2007 by
|
||||
"René Rebe" <rene@exactcode.de>
|
||||
|
||||
Copyright 2010, 2011 by
|
||||
"Mike Kelly" <mike@piratehaven.org>
|
||||
|
||||
|
@ -266,6 +263,13 @@ static Avision_HWEntry Avision_Device_List [] =
|
|||
/* comment="duplex! sheetfed scanner" */
|
||||
/* status="complete" */
|
||||
|
||||
{ NULL, NULL,
|
||||
0x0638, 0x1A31,
|
||||
"Avision", "AV220D2+",
|
||||
AV_INT_BUTTON | AV_CANCEL_BUTTON,AV_USE_GRAY_FILTER},
|
||||
/* comment="duplex! sheetfed scanner" */
|
||||
/* status="complete" */
|
||||
|
||||
{ NULL, NULL,
|
||||
0x0638, 0x0A2C,
|
||||
"Avision", "AV220+",
|
||||
|
@ -3765,7 +3769,7 @@ attach (SANE_String_Const devname, Avision_ConnectionType con_type,
|
|||
if (!found) {
|
||||
DBG (0, "attach: \"%s\" - \"%s\" not yet in whitelist!\n", mfg, model);
|
||||
DBG (0, "attach: You might want to report this output.\n");
|
||||
DBG (0, "attach: To: mike@piratehaven.org (the Avision backend maintainer)\n");
|
||||
DBG (0, "attach: To: rene@exactcode.de (the Avision backend author)\n");
|
||||
|
||||
status = SANE_STATUS_INVAL;
|
||||
goto close_scanner_and_return;
|
||||
|
@ -5142,7 +5146,7 @@ send_gamma (Avision_Scanner* s)
|
|||
switch (dev->inquiry_asic_type)
|
||||
{
|
||||
case AV_ASIC_Cx:
|
||||
case AV_ASIC_C1: /* from avision code */
|
||||
case AV_ASIC_C1:
|
||||
gamma_table_raw_size = 4096;
|
||||
gamma_table_size = 2048;
|
||||
break;
|
||||
|
@ -5150,10 +5154,6 @@ send_gamma (Avision_Scanner* s)
|
|||
gamma_table_raw_size = 256;
|
||||
gamma_table_size = 256;
|
||||
break;
|
||||
case AV_ASIC_C6: /* SPEC claims: 256 ... ? */
|
||||
case AV_ASIC_C7:
|
||||
gamma_table_raw_size = 512;
|
||||
gamma_table_size = 512;
|
||||
break;
|
||||
case AV_ASIC_OA980:
|
||||
gamma_table_raw_size = 4096;
|
||||
|
@ -5164,7 +5164,8 @@ send_gamma (Avision_Scanner* s)
|
|||
gamma_table_size = 256;
|
||||
break;
|
||||
default:
|
||||
gamma_table_raw_size = gamma_table_size = 4096;
|
||||
gamma_table_raw_size = 512; /* SPEC claims: 256 ... ? */
|
||||
gamma_table_size = 512;
|
||||
}
|
||||
|
||||
gamma_values = gamma_table_size / 256;
|
||||
|
@ -5678,8 +5679,9 @@ set_window (Avision_Scanner* s)
|
|||
}
|
||||
}
|
||||
|
||||
if (s->val[OPT_PAPERLEN].w)
|
||||
if (s->val[OPT_PAPERLEN].w != SANE_FALSE) {
|
||||
set_double (cmd.window.descriptor.paper_length, (int)((double)30.0*1200));
|
||||
}
|
||||
|
||||
if ( !(dev->hw->feature_type & AV_FUJITSU) )
|
||||
{
|
||||
|
@ -6262,11 +6264,6 @@ init_options (Avision_Scanner* s)
|
|||
|
||||
/* Init the SANE option from the scanner inquiry data */
|
||||
|
||||
dev->x_range.max = SANE_FIX ( (int)dev->inquiry_x_ranges[s->source_mode_dim]);
|
||||
dev->x_range.quant = 0;
|
||||
dev->y_range.max = SANE_FIX ( (int)dev->inquiry_y_ranges[s->source_mode_dim]);
|
||||
dev->y_range.quant = 0;
|
||||
|
||||
switch (dev->inquiry_asic_type) {
|
||||
case AV_ASIC_C2:
|
||||
dev->dpi_range.min = 100;
|
||||
|
@ -6331,6 +6328,11 @@ init_options (Avision_Scanner* s)
|
|||
s->source_mode = match_source_mode (dev, s->val[OPT_SOURCE].s);
|
||||
s->source_mode_dim = match_source_mode_dim (s->source_mode);
|
||||
|
||||
dev->x_range.max = SANE_FIX ( (int)dev->inquiry_x_ranges[s->source_mode_dim]);
|
||||
dev->x_range.quant = 0;
|
||||
dev->y_range.max = SANE_FIX ( (int)dev->inquiry_y_ranges[s->source_mode_dim]);
|
||||
dev->y_range.quant = 0;
|
||||
|
||||
/* resolution */
|
||||
s->opt[OPT_RESOLUTION].name = SANE_NAME_SCAN_RESOLUTION;
|
||||
s->opt[OPT_RESOLUTION].title = SANE_TITLE_SCAN_RESOLUTION;
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
;:status :stable
|
||||
|
||||
; backend's web page
|
||||
:url "http://skull.piratehaven.org/~mike/sane/avision.html"
|
||||
:url "http://exactcode.com/site/open_source/saneavision/"
|
||||
|
||||
; name of manpage (if it exists)
|
||||
:manpage "sane-avision"
|
||||
|
@ -111,7 +111,13 @@
|
|||
:interface "USB"
|
||||
:usbid "0x0638" "0x0a2b"
|
||||
:comment "duplex! sheetfed scanner"
|
||||
:status :complete
|
||||
:status :basic
|
||||
|
||||
:model "AV220D2"
|
||||
:interface "USB"
|
||||
:usbid "0x0638" "0x1a31"
|
||||
:comment "duplex! sheetfed scanner"
|
||||
:status :untested
|
||||
|
||||
:model "AV220+"
|
||||
:interface "USB"
|
||||
|
|
Ładowanie…
Reference in New Issue