• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1;
2; SANE Backend specification file
3;
4; It's basically emacs-lisp --- so ";" indicates comment to end of line.
5; All syntactic elements are keyword tokens, followed by a string or
6;  keyword argument, as specified.
7;
8; ":backend" *must* be specified.
9; All other information is optional (but what good is the file without it?).
10;
11
12:backend "artec"                  ; name of backend
13:version "unmaintained"                 ; version of backend
14:manpage "sane-artec"             ; name of manpage (if it exists)
15:url "http://www4.infi.net/~cpinkham/sane/sane-artec-doc.html" ; backend's web page
16
17:devicetype :scanner              ; start of a list of devices....
18                                  ; other types:  :stillcam, :vidcam,
19                                  ;               :meta, :api
20
21:mfg "Artec/Ultima"               ; name a manufacturer
22:url "http://www.artecusa.com/"
23;; name models for above-specified mfg.
24
25:model "AT3"
26:interface "SCSI"
27:status :complete
28:comment "all modes working"
29
30:model "A6000C"
31:interface "SCSI"
32:status :complete
33:comment "all modes working"
34
35:model "A6000C PLUS"
36:interface "SCSI"
37:status :complete
38:comment "f/w <= v1.92 basic, f/w >= v1.93 OK"
39
40:model "AT6"
41:status :good
42:interface "SCSI"
43:comment "Scan head needs to return home before another scan can be started."
44
45:model "AT12"
46:interface "SCSI"
47:status :complete
48:comment "all modes working"
49
50:model "AM12S"
51:interface "SCSI"
52:status :complete
53:comment "all modes working"
54
55:mfg "BlackWidow"
56:url "http://www.blackwidow.co.uk/"
57
58:model "BW4800SP"
59:interface "SCSI"
60:status :complete
61:comment "rebadged Artec AT3"
62
63:mfg "Plustek"
64:url "http://www.plustek.com/"
65
66:model "OpticPro 19200S"
67:interface "SCSI"
68:status :complete
69:comment "rebadged Artec AM12S"
70
71; :comment and :url specifiers are optional after :mfg, :model, :desc,
72;  and at the top-level.
73