1 /* sane - Scanner Access Now Easy. 2 3 Copyright (C) 2006-2010 Stéphane Voltz <stef.dev@free.fr> 4 Copyright (C) 2010 "Torsten Houwaart" <ToHo@gmx.de> X74 support 5 6 This file is part of the SANE package. 7 8 This program is free software; you can redistribute it and/or 9 modify it under the terms of the GNU General Public License as 10 published by the Free Software Foundation; either version 2 of the 11 License, or (at your option) any later version. 12 13 This program is distributed in the hope that it will be useful, but 14 WITHOUT ANY WARRANTY; without even the implied warranty of 15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 16 General Public License for more details. 17 18 You should have received a copy of the GNU General Public License 19 along with this program. If not, see <https://www.gnu.org/licenses/>. 20 21 As a special exception, the authors of SANE give permission for 22 additional uses of the libraries contained in this release of SANE. 23 24 The exception is that, if you link a SANE library with other files 25 to produce an executable, this does not by itself cause the 26 resulting executable to be covered by the GNU General Public 27 License. Your use of that executable is in no way restricted on 28 account of linking the SANE library code into it. 29 30 This exception does not, however, invalidate any other reasons why 31 the executable file might be covered by the GNU General Public 32 License. 33 34 If you submit changes to SANE to the maintainers to be included in 35 a subsequent release, you agree by submitting the changes that 36 those changes may be distributed with this exception intact. 37 38 If you write modifications of your own for SANE, it is your choice 39 whether to permit this exception to apply to your modifications. 40 If you do not wish that, delete this exception notice. 41 */ 42 43 static Lexmark_Model model_list[] = { 44 { 45 0x043d, /* vendor id */ 46 0x007c, /* product id */ 47 0xb2, /* submodel id */ 48 "Lexmark X1100", /* name */ 49 "Lexmark", /* vendor */ 50 "X1100/rev. B2", /* model */ 51 X1100_MOTOR, 52 /* X1100 series has 2 sensors */ 53 X1100_B2_SENSOR, 54 1235, /* first x-coordinate of Home Point */ 55 1258}, /* second x-coordinate of Home Point */ 56 { 57 0x043d, /* vendor id */ 58 0x007c, /* product id */ 59 0x2c, /* submodel id */ 60 "Lexmark X1100", /* name */ 61 "Lexmark", /* vendor */ 62 "X1100/rev. 2C", /* model */ 63 A920_MOTOR, /* X1100 series has 2 sensors, 2C or B2. It 64 is detected at sane_open() */ 65 X1100_2C_SENSOR, 66 1235, /* first x-coordinate of Home Point */ 67 1258}, /* second x-coordinate of Home Point */ 68 { 69 0x413c, /* vendor id */ 70 0x5105, /* product id */ 71 0x2c, /* submodel id */ 72 "Dell A920", /* name */ 73 "Dell", /* vendor */ 74 "A920", /* model */ 75 A920_MOTOR, 76 A920_SENSOR, 77 1235, /* first x-coordinate of Home Point */ 78 1258}, /* second x-coordinate of Home Point */ 79 { 80 0x043d, /* vendor id */ 81 0x007d, /* product id */ 82 0x87, /* submodel id */ 83 "Lexmark X1200", /* name */ 84 "Lexmark", /* vendor */ 85 "X1200/USB1.1", /* model */ 86 A920_MOTOR, 87 X1200_SENSOR, 88 1235, /* first x-coordinate of Home Point */ 89 1258}, /* second x-coordinate of Home Point */ 90 { 91 0x043d, /* vendor id */ 92 0x007d, /* product id */ 93 0x97, /* submodel id */ 94 "Lexmark X1200", /* name */ 95 "Lexmark", /* vendor */ 96 "X1200/USB2.0", /* model */ 97 A920_MOTOR, 98 X1200_USB2_SENSOR, 99 1235, /* first x-coordinate of Home Point */ 100 1258}, /* second x-coordinate of Home Point */ 101 { 102 0x043d, /* vendor id */ 103 0x0060, /* product id */ 104 0x00, /* submodel id */ 105 "Lexmark X74", /* name */ 106 "Lexmark", /* vendor */ 107 "X74", /* model */ 108 X74_MOTOR, 109 X74_SENSOR, 110 1222, /* first x-coordinate of Home Point */ 111 1322}, /* second x-coordinate of Home Point */ 112 { /* termination model, must be last */ 113 0, 0, 0, NULL, NULL, NULL, 0, 0, 0, 0} 114 }; /* end models description */ 115