• 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 "stv680"                  ; name of backend
13:version "1.0-1 (unmaintained)"    ; version of backend
14:manpage "sane-stv680"
15:url "http://gkall.hobby.nl/stv680-aiptek.html" ; backend's web page
16:comment "This vidcam backend is for the stv0680 chipset, See the website for more info."
17
18:devicetype :vidcam               ; start of a list of devices....
19                                  ; other types:  :stillcam, :vidcam,
20                                  ;               :meta, :api
21
22:mfg "Aiptek"                         ; name a manufacturer
23:url "http://www.aiptek.com.tw"
24
25; name models for above-specified mfg.
26:model "Aiptek Pencam"
27:interface "USB"
28:usbid "0x0553" "0x0202"
29:status :minimal
30:comment "image is OK for CIF and QCIF, VGA and QVGA untested, streaming video is a problem"
31
32:mfg "Konica"                         ; name a manufacturer
33:url "http://www.konicaminolta.com"
34
35; name models for above-specified mfg.
36:model "e-mini"
37:interface "USB"
38:usbid "0x04c8" "0x0722"
39:status :untested
40:comment "  "
41
42:mfg "Digital Dream"                  ; name a manufacturer
43:url "http://www.digitaldreamco.com/en/index.shtml"
44
45; name models for above-specified mfg.
46:model "l' espion XS"
47:interface "USB"
48:usbid "0x1183" "0x0001"
49:status :untested
50:comment "  "
51
52:mfg "Creative"                       ; name a manufacturer
53:url "http://www.creative.com/"
54
55; name models for above-specified mfg.
56:model "WebCam Go Mini"
57:interface "USB"
58:usbid "0x041e" "0x4007"
59:status :untested
60:comment "  "
61
62; :comment and :url specifiers are optional after :mfg, :model, :desc,
63;  and at the top-level.
64