📄 scanner.txt
字号:
Copyright (C) 1999, 2000 David E. NelsonApril 26, 2000CHANGES- Amended for linux-2.3.99-pre6-3- Appended hp_scan.c to end of this README- Removed most references to HP- Updated uhci/ohci host controller info- Updated support for multiple scanner support- Updated supported scanners list- Updated usbdevfs info- SpellcheckOVERVIEWThis README addresses issues regarding how to configure the kernelto access a USB scanner. Although the driver was originally conceivedfor USB HP scanners, it's general enough so that it can be used withother scanners. Also, one can now pass the USB Vendor and ProductID's using module parameters for unknown scanners. Refer to thedocument scanner-hp-sane.txt for guidance on how to configure SANE touse a USB HP Scanner.ADDITIONAL INFORMATIONhttp://www.linux-usb.org/REQUIREMENTSA host with a USB port. Ideally, either a UHCI (Intel) or OHCI(Compaq and others) hardware port should work. At the time of thiswriting, there are two UHCI drivers and one OHCI.A Linux development kernel (2.3.x) with USB support enabled or abackported version to linux-2.2.x. See http://www.linux-usb.org formore information on accomplishing this.A Linux kernel with USB Scanner support enabled.'lspci' which is only needed to determine the type of USB hardwareavailable/installed in your machine.CONFIGURATIONUsing `lspci -v`, determine the type of USB hardware available/installed. If you see something like: USB Controller: ...... Flags: ..... I/O ports at .... Then you have a UHCI based controller. If you see something like: USB Controller: ..... Flags: .... Memory at ..... Then you have a OHCI based controller.Using `make menuconfig` or your preferred method for configuring thekernel, select 'Support for USB', 'OHCI/UHCI' depending on yourhardware (determined from the steps above), 'USB Scanner support', and'Preliminary USB device filesystem'. Compile and install the modules(you may need to execute `depmod -a` to update the moduledependencies). If any of the USB sections were compiled into thekernel, a reboot is necessary. NOTE: Updating the boot disk with'lilo' may also be required. Testing was performed only as modules,YMMV.Beginning with version 0.4 of the driver, up to 16 scanners can beconnected/used simultaneously. If you intend to use more thanone scanner at a time: Add a device for the USB scanner: `mknod /dev/usbscanner0 c 180 48` `mknod /dev/usbscanner1 c 180 49` . . `mknod /dev/usb/scanner15 180 63`If you foresee using only one scanner it is best to: `mknod /dev/usbscanner0 c 180 48` `ln -s /dev/usbscanner0 /dev/usbscanner`Set appropriate permissions for /dev/usbscanner[0-15] (don't forgetabout group and world permissions). Both read and write permissionsare required for proper operation. For example: `chmod 666 /dev/usbscanner0`Load the appropriate modules (if compiled as modules): OHCI: modprobe usb-ohci modprobe scanner UHCI: modprobe usb-uhci modprobe scannerThat's it. SANE should now be able to access the device. There is a small test program (hp_scan.c -- appended below) that canbe used to test the scanner device if it's an HP scanner that supportsSCL (Scanner Control Language). Known HP scanner that support SCL arethe 4100, 5200, 6200, the 6300 -- note that the 4200 is *not*supported since it does not understand SCL; it's also stronglysuspected that the 3300 and the PhotoSmart S20 are not SCL compliant.Hp_scan.c's purpose is to test the driver without having toretrieve/configure SANE. Hp_scan.c will scan the entire bed and putthe output into a file called 'out.dat' in the current directory. Thedata in the file is raw data so it's not very useful for imaging.MESSAGESOn occasions the message 'usb_control/bulk_msg: timeout' or somethingsimilar will appear in '/var/adm/messages' or on the console or both,depending on how your system is configured. This is a side effectthat scanners are sometimes very slow at warming up and/orinitializing. In most cases, however, only several of these messagesshould appear and is generally considered to be normal. If you seea message of the type 'excessive NAK's received' then this shouldbe considered abnormal and generally indicates that the USB system isunable to communicate with the scanner for some particular reason.SUPPORTED SCANNERSNOTE: Just because a product is listed here does not mean thatapplications exist that support the product. It's in the hopes thatthis will allow developers a means to produce applications that willsupport the listed USB products.At the time of this writing, the following scanners were supported byscanner.c: Acer Prisa Acerscan 620U & 640U (!) Prisa AcerScan 620U (!) Agfa SnapScan 1212U Another SnapScan 1212U (?) SnapScan Touch Colorado -- See Primax/Colorado below Epson -- See Seiko/Epson below Genius ColorPage-Vivid Pro Hewlett Packard 3300C 4100C 4200C PhotoSmart S20 5200C 6200C 6300C Microtek ScanMaker X6 - X6U Phantom 336CX - C3 Phantom 336CX - C3 #2 Phantom C6 ScanMaker V6USL ScanMaker V6USL #2 ScanMaker V6UL - SpicyU Mustek 1200 CU Primax/Colorado G2-300 #1 G2-600 #1 G2E-300 #1 ReadyScan 636i G2-300 #2 G2-600 #2 G2E-300 #2 G2E-600 Colorado USB 9600 Colorado USB 19200 Colorado 600u Colorado 1200u Seiko/Epson Corp. Perfection 636U and 636Photo Perfection 610 Perfection 1200U and 1200Photo Umax Astra 1220U Astra 1236U Astra 2000U Astra 2200U Visioneer OneTouch 5300 OneTouch 7600 duplicate ID (!) 6100MODULE PARAMETERSIf you have a device that you wish to experiment with or try usingthis driver with, but the Vendor and Product ID's are not coded in,don't despair. If the driver was compiled as a module, you can passoptions to the driver. Simply add options scanner vendor=0x#### product=0x****to the /etc/modules.conf file replacing the #'s and the *'s with thecorrect ID's. The ID's can be retrieved from the messages file orusing `cat /proc/bus/usb/devices`. Note that USB /proc support must beenabled during kernel configuration. If the 'scanner' module isalready loaded into memory, it must be reloaded for the moduleparameters to take effect. In essence, `rmmod scanner; modprobescanner` must be performed.**NOTE**: In later kernels (2.3.38+), a new filesystem was introduced,usbdevfs. To mount the filesystem, issue the command (as root): mount -t usbdevfs /proc/bus/usb /proc/bus/usbAn alternative and more permanent method would be to add none /proc/bus/usb usbdevfs defaults 0 0to /etc/fstab. This will mount usbdevfs at each reboot. You can thenissue `cat /proc/bus/usb/devices` to extract USB device information.BUGSJust look at the list of fixes in the source files. So, if youencounter any problems feel free to drop me an email.David /\/elsondnelson@jump.nethttp://www.jump.net/~dnelson--------------- snip -- hp_scan.c -- snip ---------------/*This is a really crude attempt at writing a short test program. It'smostly only to be used to test connectivity with USB HP scanners thatunderstand SCL. Currently, the supported models are 4100C, 5200C,6200C, and the 6300C. Note that the 4200C is *NOT* acceptable.Copyright (C) David E. Nelson <dnelson@jump.net>, 1999This program is free software; you can redistribute it and/or modifyit under the terms of the GNU General Public License as published bythe Free Software Foundation; either version 2 of the License, or (atyour option) any later version.*/#include <stdio.h>#include <stdlib.h>#include <error.h>#include <unistd.h>#include <fcntl.h>/* Gray Output produces about a 8945400 byte file. Color Output produces a 26836200 byte file. To compile: gcc -o hp_scan hp_scan.c*/// #define COLOR /* Undef to scan GrayScale */int send_cmd(int, const char *, int);int read_cmd(int, char *, int);intmain(void) { ssize_t cnt = 0, total_cnt = 0; FILE *fpout; int fp; int data_size = 32768; char *data; static char reset_cmd[] = {'\x1b','E'};#ifdef COLOR static char data_type_cmd[] = {'\x1b','*','a','5','T'}; /* Color */ static char data_width_cmd[] = {'\x1b','*','a','2','4','G'}; /* 24 Bit Color */#else static char data_type_cmd[] = {'\x1b','*','a','4','T'}; /* Gray */ static char data_width_cmd[] = {'\x1b','*','a','8','G'}; /* 8 Bit Gray */#endif static char query_cmd[] = {'\x1b', '*', 's', '2', '5', '7', 'E'}; static char start_scan_cmd[] = {'\x1b','*','f','0','S'}; if(!(data=malloc(data_size))) { perror("malloc failed"); exit (1); } if((fp=open("/dev/usbscanner", O_RDWR)) < 0) { perror("Unable to open scanner device"); exit (1); } if((fpout=fopen("out.dat", "w+")) == NULL) { perror("Unable to open ouput file"); exit(1); } send_cmd(fp, reset_cmd, sizeof(reset_cmd)); send_cmd(fp, data_type_cmd, sizeof(data_type_cmd)); send_cmd(fp, data_width_cmd, sizeof(data_width_cmd)); send_cmd(fp, start_scan_cmd, sizeof(start_scan_cmd)); while ((cnt = read(fp, data, data_size)) > 0) { printf("Read: %u\n", cnt); if(fwrite(data, sizeof(char), cnt, fpout) < 0) { perror("Write to output file failed"); exit (1); } total_cnt += cnt; } if (cnt < 0) { perror("Read from scanner failed"); exit (1); } printf("\nRead %lu bytes.\n", total_cnt); send_cmd(fp, reset_cmd, sizeof(reset_cmd)); close(fp); fclose(fpout); return (0);}intsend_cmd(int fp, const char * cmd, int length) { int result; int x; if((result = write(fp, cmd, length)) != length) { printf ("Write warning: %d bytes requested, %d written\n"); } else if (result < 0) { perror ("send_cmd failure"); exit (1); } return (result);} intread_cmd(int fp, char * response, int length) { return read(fp, response, length);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -