• 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; See doc/descriptions.txt for details.
12
13:backend "ricoh2"                 ; name of backend
14:version "1.0"                    ; version of backend (or "unmaintained")
15:manpage "sane-ricoh2"            ; name of manpage (if it exists)
16:url "http://www.ricoh.com/"      ; backend's web page
17
18:devicetype :scanner              ; start of a list of devices....
19                                  ; other types:  :stillcam, :vidcam,
20                                  ;               :meta, :api
21
22:mfg "Ricoh"                      ; name a manufacturer
23:url "http://www.ricoh.com/"      ; manufacturer's URL
24
25:model "SG-3100SFNw"
26:status :basic
27:interface "USB"
28:usbid "0x05ca" "0x0439"
29
30:model "SG-3100SNw"
31:status :basic
32:interface "USB"
33:usbid "0x05ca" "0x0438"
34
35:model "SP-100SU"
36:status :untested
37:interface "USB"
38:usbid "0x05ca" "0x042c"
39
40:model "SP-111SU/SP-112SU"
41:status :basic
42:interface "USB"
43:usbid "0x05ca" "0x0448"
44