• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1; Copied from hp3300 testtools - Martijn van Oosterhout 22/02/2003
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 "hp5400"		; name of backend
13:version "1.0-2 (unmaintained)"	; version of backend
14:manpage "sane-hp5400"		; name of manpage (if it exists)
15:url "http://sourceforge.net/projects/hp5400backend"  ; backend's web page
16:comment "HP5400 and HP5470 scanners. Prototype backend available"
17
18:devicetype :scanner		; start of a list of devices....
19				; other types:  :stillcam, :vidcam,
20				;               :meta, :api
21
22:mfg "Hewlett-Packard"		; name a manufacturer
23:url "http://www.hp.com"
24
25:model "ScanJet 5400c"		; name models for above-specified mfg.
26:interface "USB"		; interface type of the device:
27				; "SCSI", "USB", "Parport (EPP)",
28				; "Parport (SPP)", "Parport (ECP)",
29				; "Serial port" or "Propretiary".
30:usbid "0x03f0" "0x1005""
31:status :basic
32
33:model "ScanJet 5470c"		; name models for above-specified mfg.
34:interface "USB"		; interface type of the device:
35:usbid "0x03f0" "0x1105"
36:status :basic
37
38:model "ScanJet 5490c"		; name models for above-specified mfg.
39:interface "USB"		; interface type of the device:
40:usbid "0x03f0" "0x1105"
41:status :basic
42
43
44; :comment and :url specifiers are optional after :mfg, :model, :desc,
45; and at the top-level.
46