Added new backend ma1509 for Mustek BearPaw 1200F scanners.

merge-requests/1/head
Henning Geinitz 2003-02-24 21:04:08 +00:00
rodzic d152930b5e
commit 747619ae5f
6 zmienionych plików z 2212 dodań i 1 usunięć

Wyświetl plik

@ -1,3 +1,9 @@
2003-02-24 Henning Meier-Geinitz <henning@meier-geinitz.de>
* backend/Makefile.in backend/dll.conf backend/ma1509.c
backend/ma1509.conf backend/ma1509.h: Added new backend ma1509 for
Mustek BearPaw 1200F scanners.
2003-02-23 Simon Munton <simon@munton.demon.co.uk>
* backend/pie.c: increment BUILD (was missed in last change)

Wyświetl plik

@ -66,7 +66,7 @@ PRELOADABLE_BACKENDS = abaton agfafocus apple artec as6e avision bh canon \
microtek2 mustek mustek_pp mustek_usb nec @NET@ pie @PINT@ plustek \
@PNM@ @QCAM@ ricoh s9036 sceptre sharp @SM3600@ @SNAPSCAN@ \
sp15c st400 tamarack test teco1 teco2 teco3 umax umax_pp umax1220u \
@V4L@ artec_eplus48u
@V4L@ artec_eplus48u ma1509
ifneq (@SELECTED_BACKENDS@,)
PRELOADABLE_BACKENDS = @SELECTED_BACKENDS@
endif
@ -114,6 +114,7 @@ DISTFILES = abaton.c abaton.conf abaton.h agfafocus.c agfafocus.conf \
jinclude.h \
leo.c leo.h leo.conf \
lm9830.h \
ma1509.c ma1509.conf ma1509.h \
Makefile.in matsushita.c \
matsushita.conf matsushita.h microtek2.c microtek2.conf microtek2.h \
microtek.c microtek.conf microtek.h mustek.c mustek.conf mustek.h \
@ -315,6 +316,8 @@ libsane-hp.la: ../sanei/sanei_pio.lo
libsane-leo.la: ../sanei/sanei_config2.lo
libsane-leo.la: ../sanei/sanei_constrain_value.lo
libsane-leo.la: ../sanei/sanei_scsi.lo
libsane-ma1509.la: ../sanei/sanei_constrain_value.lo
libsane-ma1509.la: ../sanei/sanei_usb.lo
libsane-matsushita.la: ../sanei/sanei_config2.lo
libsane-matsushita.la: ../sanei/sanei_constrain_value.lo
libsane-matsushita.la: ../sanei/sanei_scsi.lo

Wyświetl plik

@ -24,6 +24,7 @@ gt68xx
hp
hpsj5s
leo
ma1509
matsushita
microtek
microtek2

2005
backend/ma1509.c 100644

Plik diff jest za duży Load Diff

Wyświetl plik

@ -0,0 +1,10 @@
#ma1509.conf: see sane-ma1509(5)
#Warm-up time for the lamp in seconds
option warmup-time 30
#Mustek BearPaw 1200F
usb 0x055f 0x0010
#Manual setting (e.g. for FreeBSD)
#/dev/uscanner0

186
backend/ma1509.h 100644
Wyświetl plik

@ -0,0 +1,186 @@
/* sane - Scanner Access Now Easy.
(C) 2003 Henning Meier-Geinitz <henning@meier-geinitz.de>.
Based on the mustek (SCSI) backend.
This file is part of the SANE package.
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
published by the Free Software Foundation; either version 2 of the
License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston,
MA 02111-1307, USA.
As a special exception, the authors of SANE give permission for
additional uses of the libraries contained in this release of SANE.
The exception is that, if you link a SANE library with other files
to produce an executable, this does not by itself cause the
resulting executable to be covered by the GNU General Public
License. Your use of that executable is in no way restricted on
account of linking the SANE library code into it.
This exception does not, however, invalidate any other reasons why
the executable file might be covered by the GNU General Public
License.
If you submit changes to SANE to the maintainers to be included in
a subsequent release, you agree by submitting the changes that
those changes may be distributed with this exception intact.
If you write modifications of your own for SANE, it is your choice
whether to permit this exception to apply to your modifications.
If you do not wish that, delete this exception notice.
This file implements a SANE backend for scanners based on the Mustek
MA-1509 chipset. Currently the Mustek BearPaw 1200F is known to work.
*/
#ifndef ma1509_h
#define ma1509_h
#include "../include/sane/config.h"
#include <sys/types.h>
/* Some constants */
#define INQ_LEN 0x60 /* Length of SCSI inquiry */
#define MA1509_COMMAND_LENGTH 8
#define MA1509_GAMMA_SIZE 1024
#define MA1509_BUFFER_SIZE (1024 * 128)
#define MA1509_WARMUP_TIME 30
#ifndef PATH_MAX
# define PATH_MAX 1024
#endif
#define MA1509_CONFIG_FILE "ma1509.conf"
#define MM_PER_INCH 25.4
/* Convenience macros */
#if defined(MIN)
#undef MIN
#endif
#if defined(MAX)
#undef MAX
#endif
#define MIN(a,b) ((a) < (b) ? (a) : (b))
#define MAX(a,b) ((a) > (b) ? (a) : (b))
/* Copy values to memory ('L' = little endian, 'B' = big endian */
#define STORE16L(cp,v) \
do { \
int value = (v); \
\
*(cp)++ = (value >> 0) & 0xff; \
*(cp)++ = (value >> 8) & 0xff; \
} while (0)
#define STORE16B(cp,v) \
do { \
int value = (v); \
\
*(cp)++ = (value >> 8) & 0xff; \
*(cp)++ = (value >> 0) & 0xff; \
} while (0)
#define STORE32B(cp,v) \
do { \
long int value = (v); \
\
*(cp)++ = (value >> 24) & 0xff; \
*(cp)++ = (value >> 16) & 0xff; \
*(cp)++ = (value >> 8) & 0xff; \
*(cp)++ = (value >> 0) & 0xff; \
} while (0)
/* declarations */
enum Ma1509_Option
{
OPT_NUM_OPTS = 0,
OPT_MODE_GROUP,
OPT_MODE,
OPT_RESOLUTION,
OPT_SOURCE,
OPT_PREVIEW,
OPT_GEOMETRY_GROUP,
OPT_TL_X, /* top-left x */
OPT_TL_Y, /* top-left y */
OPT_BR_X, /* bottom-right x */
OPT_BR_Y, /* bottom-right y */
OPT_ENHANCEMENT_GROUP,
OPT_THRESHOLD,
OPT_CUSTOM_GAMMA, /* use custom gamma tables? */
OPT_GAMMA_VECTOR_R,
OPT_GAMMA_VECTOR_G,
OPT_GAMMA_VECTOR_B,
/* must come last: */
NUM_OPTIONS
};
typedef union
{
SANE_Word w;
SANE_Word *wa; /* word array */
SANE_String s;
}
Option_Value;
typedef struct Ma1509_Device
{
struct Ma1509_Device *next;
SANE_String name;
SANE_Device sane;
SANE_Bool has_ta;
SANE_Bool has_adf;
SANE_Range x_range;
SANE_Range y_range;
/* scan area when transparency adapter is used: */
SANE_Range x_trans_range;
SANE_Range y_trans_range;
/* values actually used by scanner, not necessarily the desired! */
SANE_Int bpl, ppl, lines;
}
Ma1509_Device;
typedef struct Ma1509_Scanner
{
/* all the state needed to define a scan request: */
struct Ma1509_Scanner *next;
SANE_Option_Descriptor opt[NUM_OPTIONS];
Option_Value val[NUM_OPTIONS];
SANE_Bool scanning;
SANE_Bool cancelled;
SANE_Parameters params;
/* Parsed option values and variables that are valid only during
actual scanning: */
int fd; /* filedescriptor */
long start_time; /* at this time the scan started */
long lamp_time; /* at this time the lamp was turned on */
SANE_Word total_bytes; /* bytes read from scanner */
SANE_Word read_bytes; /* bytes transmitted by sane_read */
SANE_Int red_gamma_table[MA1509_GAMMA_SIZE];
SANE_Int green_gamma_table[MA1509_GAMMA_SIZE];
SANE_Int blue_gamma_table[MA1509_GAMMA_SIZE];
SANE_Byte *buffer, *buffer_start;
SANE_Int buffer_bytes;
/* scanner dependent/low-level state: */
Ma1509_Device *hw;
}
Ma1509_Scanner;
#endif /* ma1509_h */