1sane-dc210(5) SANE Scanner Access Now Easy sane-dc210(5)
2
3
4
6 sane-dc210 - SANE backend for Kodak DC210 Digital Camera
7
9 The sane-dc210 library implements a SANE (Scanner Access Now Easy)
10 backend that provides access to the Kodak DC210 camera. THIS IS EX‐
11 TREMELY ALPHA CODE! USE AT YOUR OWN RISK!!
12
14 The current version of the backend only allows one camera to be con‐
15 nected. The device name is always "0".
16
18 The contents of the dc210.conf specify the serial port and baud rate to
19 use. The baud rate specifies the maximum rate to use while downloading
20 pictures. (The camera is always initialized using 9600 baud, then
21 switches to the higher rate). On my 90MHz Pentium, I usually have no
22 problems downloading at 115200 baud as long as the system is not exces‐
23 sively busy and the "interrupt-unmask flag" is set in the IDE driver
24 (hdparm -u1). Supported baud rates are: 9600, 19200, 38400, 57600, and
25 115200.
26
27 The dumpinquiry line causes some information about the camera to be
28 printed.
29
30 cmdrespause specifies how many usec (1,000,000ths of a second) to wait
31 between writing the command and reading the result. 125000 seems to be
32 the lowest I could go reliably.
33
34 breakpause specifies how many usec (1,000,000ths of a second) between
35 sending the "back to default" break and sending commands.
36
37 Empty lines and lines starting with a hash mark (#) are ignored. A
38 sample configuration file is shown below:
39
40 port=/dev/ttyS0
41 # this is a comment
42 baud=115200
43 dumpinquiry
44 cmdrespause=125000
45 breakpause=1000000
46
48 /etc/sane.d/dc210.conf
49 The backend configuration file (see also description of
50 SANE_CONFIG_DIR below).
51
52 /usr/lib64/sane/libsane-dc210.a
53 The static library implementing this backend.
54
55 /usr/lib64/sane/libsane-dc210.so
56 The shared library implementing this backend (present on systems
57 that support dynamic loading).
58
59
61 SANE_CONFIG_DIR
62 This environment variable specifies the list of directories that
63 may contain the configuration file. On *NIX systems, the direc‐
64 tories are separated by a colon (`:'), under OS/2, they are sep‐
65 arated by a semi-colon (`;'). If this variable is not set, the
66 configuration file is searched in two default directories:
67 first, the current working directory (".") and then in
68 /etc/sane.d. If the value of the environment variable ends with
69 the directory separator character, then the default directories
70 are searched after the explicitly specified directories. For
71 example, setting SANE_CONFIG_DIR to "/tmp/config:" would result
72 in directories tmp/config, ., and /etc/sane.d being searched (in
73 this order).
74
75 SANE_DEBUG_DC210
76 If the library was compiled with debugging support enabled, this
77 environment variable controls the debug level for this backend.
78 A value of 128 requests maximally copious debug output; smaller
79 levels reduce verbosity.
80
81
83 sane(7)
84
85
87 Brian J. Murrell
88
89 This backend is based somewhat on the dc25 backend included in this
90 package by Peter Fales.
91
92 The manpage was copied from the dc25 backend and somewhat edited by
93 Henning Meier-Geinitz.
94
95
97 Known bugs/limitations are: ?
98
99 More general comments, suggestions, and inquiries about frontends or
100 SANE should go to the SANE Developers mailing list (see
101 http://www.sane-project.org/mailing-lists.html for details). You must
102 be subscribed to the list, otherwise your mail won't be sent to the
103 subscribers.
104
105
106
107 11 Jul 2008 sane-dc210(5)