Wykres commitów

3346 Commity (20a0ed547e4f47db04431b944396f98111e6fe24)

Autor SHA1 Wiadomość Data
Stéphane Voltz e2dbc97b7f fix 600 to 4800 dpi gray scan geometry
- use correct slope table allowing gray scan speeds
2014-06-02 06:19:29 +02:00
Stéphane Voltz 289b747106 no special case for high speed moving 2014-06-02 06:19:29 +02:00
Stéphane Voltz e9a6a35a87 better slope target trace message 2014-06-02 06:19:28 +02:00
Stéphane Voltz 79f791589e define and update specific LiDE 110 table
- create working values for 1200/2400 gray dpi scans
2014-06-02 06:19:28 +02:00
Stéphane Voltz f73440f5a6 raise build number 2014-06-02 06:19:28 +02:00
Stéphane Voltz 23c8bc461b improve 600 dpi gray scans
- define LiDE 110 specific table for 600 dpi
- extend it to reach right dpi
2014-06-02 06:19:28 +02:00
Stéphane Voltz 3b0d8728f3 use generic slope table generation for gl124 2014-06-02 06:19:28 +02:00
Stéphane Voltz c2e1bd6b4d add init_scan_regs function to internal API
- define a common scan register setting function
- start to move gl124.C to generic motor slope handling
2014-06-02 06:19:28 +02:00
Stéphane Voltz 5f166f1016 improve UTA detection by updating hardware sensors
- call sensor hardware update earlier to detect XPA at open time
2014-06-02 06:19:28 +02:00
Stéphane Voltz 1ec94972b9 usb reset for gl646 on sane_exit
- improves reliability by resetting usb device on leaving
2014-06-02 06:19:28 +02:00
m. allan noah af80354325 epjitsu backend v24
enable fine calibration for S1300i 225 & 300 dpi, and S300 150 dpi
2014-06-01 08:31:21 -04:00
Paul Newall f67f37ec19 kodakaio.c comments on configure parameters have test backend added 2014-05-30 21:19:13 +01:00
m. allan noah bac4009627 epjitsu backend v23
- add S1300i support
- fix buffer overruns in read_from_scanner
- set default page width
- simplified the 225x200 resolution code
2014-05-27 21:42:17 -04:00
Rolf Bensch 8316417ed9 Pixma backend version 0.17.9 2014-05-26 19:04:23 +02:00
Rolf Bensch 8d192503f7 remove unused variable 2014-05-26 18:56:37 +02:00
Rolf Bensch c495f5a5af fix ADF paper empty @ start scanning 2014-05-26 18:38:54 +02:00
Rolf Bensch 94958e04e0 Pixma backend version 0.17.8 2014-05-16 15:40:52 +02:00
Rolf Bensch e8c9b727bd fix MG7100 image data post processing @ high resolutions > 600dpi 2014-05-16 15:36:30 +02:00
Mark Buda c591d2b7da Correction of some spelling/grammatical errors in source code 2014-05-15 22:04:37 -04:00
Peter Marschall bcd232fb41 epjitsu: add Fujitsu S1300i to epjitsu.conf.in 2014-05-15 22:04:36 -04:00
Peter Marschall 40f74dd208 epjitsu: document how to extract .nal files in Linux
In Fujitsu ScanSnap installation DVDs the .nal firmware files required
for the epjitsu backend to work are located in cabinet files.

The script snippet locates these cabinet files on the DVD and extracts all
.nal files it finds.
2014-05-15 22:04:36 -04:00
Peter Marschall 2d438531b1 epjitsu.c: add/fix a few comments 2014-05-15 22:04:36 -04:00
Hiroshi Miura a4cff1c9e2 epjitsu: implement get_gcd
Signed-off-by: Hiroshi Miura <miurahr@linux.com>
2014-05-15 22:04:36 -04:00
Hiroshi Miura bc459dea9d epjitsu: ScanSnap S1100 support
Add S1100 support

The ideas and cmd data are comes from:
http://ubuntuforums.org/showthread.php?t=1678335

TBD: test on S1100, I don't have a machine.
2014-05-15 22:04:36 -04:00
Hiroshi Miura ceeb9bb2d3 epjitsu: refactor coarsecal()
Now refactoring coarsecal() for S1100 support.
it is carefully changed not to break S300/1300/1500.

the chunk come from http://ubuntuforums.org/showthread.php?t=1678335
2014-05-15 22:04:36 -04:00
Hiroshi Miura e6abe74b5c epjitsu: introduce object_position()
Rename ingest() to object_position()
now it can do both ingest and eject.
This is required by S1100 support.

chunk come from
http://ubuntuforums.org/showthread.php?t=1678335
2014-05-15 22:04:36 -04:00
Hiroshi Miura 2f7c6382f4 epjitsu: x,y_resolution difference treatment
ScanScanp has a resolution 225x200 in each model.

The function which treat it should use a mathematic theory.
Euclidean algorithm should be used to get GCD (Greatest Common Devisor)
for this calcuration.

This patch make a separate function that should be get_GCD and
simplize a logic in copy image function.

TBD: this don't have Euclidean algorithm. Just prepare for it.

Signed-off-by: Hiroshi Miura <miurahr@linux.com>
2014-05-15 22:04:36 -04:00
Hiroshi Miura 25947781ec epjitsu: tl_y parameter support
The driver can cut top of image for padding.
We can also cut an ordered size at a top of image.
It make tl_y parameter works.

Signed-off-by: Hiroshi Miura <miurahr@linux.com>
2014-05-15 22:04:36 -04:00
Hiroshi Miura 529a7611d2 epjitsu: skip top padding
The driver need a padding at top of page.
Because scansnap don't treat empty image
at the top of image that is generated when
loading paper, the driver cut top of page
in 1/2 inch.

Signed-off-by: Hiroshi Miura <miurahr@linux.com>
2014-05-15 22:04:36 -04:00
Hiroshi Miura 5ab232d3a6 epjitsu: fix indent
Signed-off-by: Hiroshi Miura <miurahr@linux.com>
2014-05-15 22:04:36 -04:00
Hiroshi Miura f3d5455e9a epjitsu: optimize loop
Signed-off-by: Hiroshi Miura <miurahr@linux.com>
2014-05-15 22:04:36 -04:00
Hiroshi Miura 9f1542afc6 epjitsu: page width support
ScanSnap itself don't have a feature to
detect and scan area in demanded width.
Otherwise driver need to cut into proper width.

this introduce page_width parameter and facility
to cut image into page width.

Signed-off-by: Hiroshi Miura <miurahr@linux.com>
2014-05-15 22:04:36 -04:00
Hiroshi Miura 8ef91bb06d epjitsu: unit convert macro
introducing macros converting between scanner unit
and inches each other.

Signed-off-by: Hiroshi Miura <miurahr@linux.com>
2014-05-15 22:04:36 -04:00
Stéphane Voltz 0694698fd8 enable gamma only at scan time 2014-05-12 22:02:06 +02:00
Stéphane Voltz cced79e963 fix #314663
- bug was due to an off by one in gamma table copy
2014-05-12 21:39:16 +02:00
Stéphane Voltz b51673a252 debug cleanups
- cleanup some debug messages
- prepare for new internal scan API
2014-05-11 09:24:16 +02:00
Stéphane Voltz ee4cd1cdc4 halt endpoint properly before resetting 2014-05-10 08:50:45 +02:00
Rolf Bensch 3b0861b3bd Pixma backend version 0.17.7 2014-05-08 19:46:50 +02:00
Rolf Bensch b4d7533ae3 fix adf paper empty bug
- new parameter mp->adf_state:
  + detect start scan session
  + handle adf scan between pages
  + detect end scan session (adf paper empty)
- old code: s->param->adf_pageid hasn't been reset @ adf paper empty
2014-05-08 19:35:25 +02:00
Rolf Bensch f5d936c655 all ADF scanners support 14" legal paper size 2014-05-08 19:22:01 +02:00
m. allan noah 522f4f4d0f canon_dr backend v46
- split debug level 30 into two levels
- simplify jpeg ifdefs
- add support for DR-M160
2014-04-11 21:21:42 -04:00
m. allan noah 0eabc04805 Fix range and value of fujitsu offtimer option 2014-04-11 21:20:30 -04:00
m. allan noah 50236fab4e fujitsu backend v121
- add JFIF APP0 marker with resolution to jpeg images
- improve jpeg duplex parsing code
- simplify jpeg ifdefs
- add offtimer option for more recent scanners
2014-04-08 22:11:42 -04:00
m. allan noah 17a6615a11 canon_dr: split debug level 2014-04-08 22:11:42 -04:00
m. allan noah 763e08b4c9 fujitsu backend v120
- only call hopper_before_op code at batch start
- remove unused backup/restore_params
2014-03-29 21:18:35 -04:00
m. allan noah ffb7051725 canon_dr backend v45
- dropout support for machines with ssm2 command
- doublefeed support for machines with ssm2 command
2014-03-29 21:18:35 -04:00
m. allan noah e20f3b5473 canon_dr backend v44
- buffermode support for machines with ssm2 command
- DR-M140 needs always_op=0
2014-03-29 21:18:29 -04:00
m. allan noah 3609f406ca canon_dr backend v43
- initial DR-M140 support
- add extra_status config and code
- split status code into do_usb_status
- fix copy_line margin offset
- add new color interlacing modes and code
- comment out ssm2
- add timestamp to do_usb_cmd
2014-03-29 21:17:35 -04:00
Alessandro Zummo b768bb07b6 epson2: fixed another timeout/crash 2014-03-25 14:51:42 +01:00
Rolf Bensch 6ff135ed33 clamp minimum image size to 16 px x 16 px 2014-03-21 19:15:50 +01:00
Rolf Bensch 23b266f92c MX520 has button support 2014-03-21 19:09:33 +01:00
Rolf Bensch e6b3f9ea01 MX520 supports 14" legal paper size in ADF mode 2014-03-21 19:08:21 +01:00
Alessandro Zummo db31fdd1e3 epson2: fixed timeout and scanner crash on WP-4540 series (and others) 2014-03-13 22:57:17 +01:00
Alessandro Zummo 3babe5de40 epson2: fixed ADF detection 2014-03-13 22:56:29 +01:00
Alessandro Zummo 0a37fc99f7 epson2: updated usb ids 2014-03-04 00:57:33 +01:00
Alessandro Zummo f26f3d38a7 epson2: do not reset after each page 2014-03-03 23:56:29 +01:00
Alessandro Zummo e855744b5c epson2: improve debug output 2014-03-03 23:56:28 +01:00
Alessandro Zummo 83b9767539 epson2: fixed detection of multiple network-enabled scanners 2014-03-03 23:56:28 +01:00
Rolf Bensch 5a22adb9ea rename MF4550d to MF4500 Series 2014-02-28 21:19:53 +01:00
Stéphane Voltz a54bbf84f5 fix calibration file name collision
- handle the case where there are several identical scanners plugged in,
  and avoid sharing the same calibration file
2014-02-24 06:53:10 +01:00
Louis Lagendijk ff7faa7964 pixma_bjnp.c: remove code and sanei_bjnp_activate/deactivate to make ADF scan work on MFNP protocol
Code is moved to sanei_bjnp_open/close instead. The FINISH command killed ADF scan
2014-02-12 00:16:34 +01:00
Louis Lagendijk bd851f2a3e pixma_bjnp.c: fix regression in bjnp support 2014-02-11 21:46:49 +01:00
Louis Lagendijk be2cc19c60 Merge branch 'master' of ssh://git.debian.org/git/sane/sane-backends 2014-02-10 23:56:17 +01:00
Louis Lagendijk 77a1d1cdbc pixma_bjnp.c pixma_bjnp.h pixma_bjnp_private.h: Added support for Canon laser multi-functionals using the mfnp protool over port 8610.
Improved debug logging to be more reeadable
2014-02-10 23:53:04 +01:00
Rolf Bensch f0a2800a6d MX510 supports 14" legal paper size in ADF mode 2014-02-08 18:47:52 +01:00
Louis Lagendijk 56b186e225 Increase buffer size, as a device may send a larger blocksize when used over mfnp 2014-02-08 18:01:31 +01:00
m. allan noah 469674c442 umax-uc630 updates from Ondrej Zary 2014-01-29 21:42:46 -05:00
Rolf Bensch 16bbb353cc bug #314411, Canon imageCLASS MF4570dw is working 2014-01-02 20:54:25 +01:00
Rolf Bensch 0efb64d126 update copyright 2014-01-02 20:51:00 +01:00
Rolf Bensch 42d9aa6ec2 MF4800 has ADF 2013-12-27 20:41:54 +01:00
Rolf Bensch 1ffcd34710 Canon i-SENSYS MF4800 Series is working 2013-12-27 11:33:44 +01:00
Rolf Bensch 7c454611a8 MF4800 supports 14" legal paper size in ADF mode 2013-12-27 11:08:03 +01:00
Rolf Bensch 473d976c0f fix usb cmd transaction timeout 2013-12-23 10:02:49 +01:00
Stéphane Voltz a9dc869717 calibration tuning for LiDE35 and LiDE80 2013-12-23 06:20:23 +01:00
Stéphane Voltz f5f88cefde tune gamma for LIDE80 sensor 2013-12-23 06:18:10 +01:00
Stéphane Voltz c5730be96b enable fast fed for LiDE80 2013-12-23 06:18:10 +01:00
Stéphane Voltz e79a94db5e tune LEDADD exposure for GL841 scanners 2013-12-23 06:18:10 +01:00
Stéphane Voltz 60eba116f3 Make LEDADD work for LiDE 35 and 80 2013-12-23 06:18:10 +01:00
m. allan noah 5b66dd64c5 fujitsu backend v119
- call get_pixelsize after start_scan, not before
- extend get_pixelsize to request backside data
- stop using backup/restore_params
- don't use extended get_pixelsize on M3091 or M3092
- call software crop code on backside images too
2013-12-18 21:53:26 -05:00
Rolf Bensch 5cfa697ec3 Pixma backend version 0.17.6 2013-12-16 19:41:20 +01:00
Rolf Bensch de393271bc tidy calc_shifting() 2013-12-16 19:27:02 +01:00
Rolf Bensch 0893dc530f enable button support for MX920 2013-12-16 19:24:25 +01:00
Rolf Bensch 94378b7bd8 bypass reorder_pixels() 2013-12-16 19:21:14 +01:00
Rolf Bensch 0670ad7b12 MX920 has 14" ADF paper length 2013-12-16 19:17:57 +01:00
Rolf Bensch 2f37052d2a rename Canon imageCLASS MF4770n to i-SENSYS MF4700 Series 2013-12-16 18:31:43 +01:00
Rolf Bensch a1222c0928 rename Canon i-SENSYS MF4890dw to MF4800 Series 2013-12-16 18:31:21 +01:00
Stéphane Voltz 6e1ce492ba GL841 shading calibration fixes
- fix regression in LiDE 35 shading (buffer full flag)
- tune LiDE80 shading calibration by skipping extra dark area
- whitespaces cleanup
2013-12-16 06:06:19 +01:00
Stéphane Voltz b882b2ed06 use y white strip offset to reach calibration area
- use y white strip offset to move to calibration area for GL841 devices
- set y offset to 0 for all GL841 devices but one needing it
2013-12-15 07:27:26 +01:00
Stéphane Voltz 77a3c2f7aa disable LED ADD for LiDE 80 2013-12-15 07:27:26 +01:00
Stéphane Voltz 4cae3bdeab LIDE80 WIP : basic operation milestone reached!
- make SHDAREA work
- exposure timing working from 75 to 1200 dpi
2013-12-15 07:27:26 +01:00
Stéphane Voltz 1a780d6bf1 LiD80 WIP: working motor modes for all resolution 2013-12-15 07:27:25 +01:00
Stéphane Voltz 091322f1f6 LiDE80 WIP : 1200 dpi color mode working
- factor exposure computing for gl841
- correct motor set up for LiDE80
2013-12-15 07:27:25 +01:00
Stéphane Voltz 79371ea4d9 factor out step type computing function 2013-12-15 07:27:25 +01:00
Stéphane Voltz e500d44e65 LiDE 80 WIP:
- 1200 shading working
- 600 and below resolution are ok, but shading needs to be fixed
- 1200 dpi motor resolution doesn't work
2013-12-15 07:27:25 +01:00
Stéphane Voltz ebcc2c0a3f LiDE80 WIP : update calibration
- led calibration updated
- offset calibration : new function added
- coarse gain calibration updated
- device description updated
2013-12-15 07:27:25 +01:00
Stéphane Voltz 1952f1172a LiDE 80 WIP : unit test scans are working 2013-12-15 07:27:25 +01:00
Stéphane Voltz 8fbb9c247b LiDE 80 WIP : working unit esting for 75, 100, 150 and 300 dpi 2013-12-15 07:27:25 +01:00
Stéphane Voltz 6ebd7e35b4 LiDE80 WIP : Working frontend 2013-12-15 07:27:25 +01:00
m. allan noah 9f6ebc2f3c fujitsu backend v118
- support fi-7160, fi-7260, fi-7180 and fi-7280
- remove unused var from do_scsi_cmd()
- added more request_sense options
- add adv_paper_protect option
- enable paper protection by default
- increase max_x_fb for fi-6240 and fi-6230
2013-12-10 21:57:11 -05:00
m. allan noah c4a5bbc143 canon_dr backend v42
- initial DR-G1100 support
- add support for paper sensors (P-215 & P-208)
- add initial support for card reader (P-215)
- removed unused var from do_scsi_cmd()
2013-12-09 20:56:45 -05:00
Nils Philippsen d835d9d565 epson: don't leak memory if realloc() fails 2013-11-07 14:29:28 +01:00
Nils Philippsen dc76e7cce4 genesys: check return values 2013-11-06 12:03:23 +01:00
Nils Philippsen 5d7f7ffefb genesys: remove code which is never reached
The surrounding conditions always evaluate as FALSE because the
variables are set to different values before.
2013-11-06 12:03:23 +01:00
Nils Philippsen 602d6ecdfe rts8891: check return values 2013-11-06 12:03:23 +01:00
Nils Philippsen a3fe2c1ea5 genesys: compute MAX_SCANNERS from array length
... of genesys_usb_device_list[]
2013-11-05 15:51:05 +01:00
Nils Philippsen 2d89e37f36 kodakio: don't overrun option name array 2013-11-05 15:51:05 +01:00
Nils Philippsen 101f76c516 pixma: document falling through to next switch case 2013-11-05 15:19:48 +01:00
Nils Philippsen b53a58c4b5 genesys: avoid infinite loop
The stray semicolon prevents executing the loop which could reset the
REG41_FEBUSY bit.
2013-11-05 15:15:17 +01:00
Nils Philippsen 575f40a079 pixma: avoid buffer overflows 2013-11-05 15:12:20 +01:00
Nils Philippsen cf9129d62f pixma: u32tohex(): shift first, then cast to uint8_t 2013-11-05 14:54:13 +01:00
Nils Philippsen 66cb9b55c2 remove code which is never reached 2013-11-05 14:47:27 +01:00
Nils Philippsen 252ccdd926 genesys: fix some memory leaks 2013-11-05 14:17:12 +01:00
Nils Philippsen 8cd2d36f1e epson: ensure that command() allocates enough memory 2013-11-05 14:05:25 +01:00
Nils Philippsen 56104b5329 genesys: avoid dereferencing null pointer 2013-11-05 11:39:56 +01:00
Nils Philippsen d35d6326cb pixmap: omitting curly braces considered harmful
The break being outside of the else block effectively made an if clause
out of the while loop. This caused long hostnames to not be shortened
sufficiently which subsequentely made strcpy() write beyond buffer
boundaries.
2013-10-29 14:14:18 +01:00
Stéphane Voltz 4b6d50f662 LiDE 80 WIP : parking is now working 2013-10-19 21:30:04 +02:00
Stéphane Voltz eca8b300b5 LiDE 80 init working 2013-10-19 21:24:34 +02:00
Stéphane Voltz c88b3bc228 add LiDE 80 device description 2013-10-19 21:24:34 +02:00
Paul Newall 37523b867d Bugfix in kodakaio.c to fix segfault when non kodak scanners return unexpected data via avahi auto discovery 2013-10-14 22:22:53 +01:00
Rolf Bensch 70cfb5e71b Pixma backend version 0.17.5 2013-10-11 19:43:27 +02:00
Rolf Bensch ee4704f34a new scanner Canon i-SENSYS MF4890dw 2013-10-11 19:40:42 +02:00
Rolf Bensch 82f92ec004 use mf->generation instead of s->cfg->pid for generation 2 scanners 2013-10-11 19:29:58 +02:00
Rolf Bensch d5baddf003 reorder scanner defines 2013-10-11 19:20:13 +02:00
Rolf Bensch e95e888c3b fix button support for Canon CS8800F 2013-09-30 16:22:12 +02:00
Rolf Bensch a178841287 new scanner Canon imageCLASS MF4770n 2013-09-24 21:25:19 +02:00
Alex Belkin b5ca4318c3 usb id for dell 1235cn, reported by Jean-Francois Labrousse. 2013-09-18 22:52:34 +04:00
m. allan noah dbbcb61f09 microtek.c: add missing break (#314408) 2013-09-17 21:34:25 -04:00
Gerhard Jaeger b5d1459dfd Tweaked motor settings for CanoScan N650U 2013-09-16 17:16:23 +02:00
Gerhard Jaeger b77df93a26 Bumped build number 2013-09-16 17:15:39 +02:00
Rolf Bensch a8461cbe7a new scanners Canon imageCLASS MF4570dw and imageRUNNER 1133 2013-09-13 14:06:38 +02:00
Rolf Bensch c04b748b21 Pixma backend version 0.17.4 2013-09-11 22:56:18 +02:00
Rolf Bensch dbfcd4dbcf new scanners Canon Pixma MG2400, MG2500, MG3500, MG5500, MG64000, MG6500 and MG7100 2013-09-11 22:53:37 +02:00
Dan Kegel 0f23fb3fc1 Epson Perfection 1650 doesn't support the FSG_STATUS_CANCEL_REQ bit. Fixes sane bug 312793/ debian bug 597922. 2013-09-02 12:08:49 +02:00
Alessandro Zummo 543393d90c close connection if an error occurs in the detection process 2013-08-29 11:33:24 +02:00
Chris Bagwell bc2dc68fa5 Improve snmp detection when cross compiling.
Improving here means do not set LIBS/CFLAGS if library is not detected.
This prevents some unknown options based to ld when host is Linux and
target is mingw32/64.  Further improvements are needed if one wants this
snmp support when cross compiling to really work.

Also, to make commit bisectable, updated all autofoo files using
'autoreconf -i -f' and repatching ltmain.sh.

Also, test-driver was missing from git repo but the Makefile.in
checked in expected it to exist.
2013-08-15 13:10:39 -05:00
Stéphane Voltz e3e5e9b3a3 implement brightness/constrast enhancement using gamma tables 2013-08-11 21:51:26 +02:00
Stéphane Voltz 63d12e3ee9 add calibration file name option
- add an option to set calibration cache file name
- update man page and fr translation
2013-08-07 06:42:14 +02:00
Stéphane Voltz ff58b225bf add digital contrast and brightness 2013-08-05 21:28:39 +02:00
m. allan noah 4029979bd9 Add changelog entry and correct date for v41 2013-07-31 21:43:09 -04:00
m. allan noah eacdc3a5b3 canon_dr backend version 41
- initial P-208 and P-215 support
- bug fix for calibration of scanners with duplex_offset
- allow duplex_offset to be controlled from config file
2013-07-31 21:38:25 -04:00
Stéphane Voltz bf1f8988a1 fix incorrect cap for SWDEROTATE option (bug #314339) 2013-07-30 14:19:18 +02:00
Rolf Bensch 3578d4039e Canon Pixma MX920 has duplex ADF and supports max. 600 dpi @ ADF 2013-07-19 20:59:43 +02:00
Rolf Bensch 22ead4021c Pixma backend version 0.17.3 2013-07-18 22:54:37 +02:00
Rolf Bensch 11ba184235 new button option --scan-resolution
detailed button option description
2013-07-18 22:45:45 +02:00
Rolf Bensch ded994f348 Canon PIXMA MG8200 is working now 2013-07-18 22:24:39 +02:00
Stéphane Voltz 70bb3e2c60 some whitespaces clean up 2013-07-18 08:18:26 +02:00
Stéphane Voltz 1fa067861c update lide 110 to match scan lide 210
- use lide 210 mode for lide 110
- prepare true gray for GL124
2013-07-17 22:47:42 +02:00
Stéphane Voltz c9a4cbe7a1 improve linesel computing 2013-07-17 21:49:12 +02:00
Stéphane Voltz 1c3ec28ab8 improve below 600 dpi scan speed and quality for lide 210
- add half ccd mode for lide 210
2013-07-17 21:24:57 +02:00
Stéphane Voltz ca08a8ba2b switch genesys register address to 16 bits 2013-07-15 07:53:37 +02:00
Stéphane Voltz 5408c8cd27 use LINESEL in all cases fro GL124 2013-07-09 06:59:56 +02:00
Stéphane Voltz 730a2ba4e5 define specific LIDE210 sensor and motor instead of using LIDE110 ones 2013-07-04 04:28:09 +02:00
Stéphane Voltz 2812e1f81a add missing cases for CCD_PLUSTEK3800 2013-07-04 04:08:16 +02:00
Rolf Bensch 1c5760a897 fix mode list for infrared scans 2013-06-27 21:14:49 +02:00
m. allan noah b8cc128ea9 Fujitsu backend v117
default buffer-mode to off
improved error handling in sane_start
image width must be multiple of 8 when swcrop is used before binarization (iX500)
check hopper sensor before calling object_position(load) on iX500
2013-06-27 09:47:12 -04:00
Stéphane Voltz 2d7ebd42ea experimental code for GL845 based Opticbook 3800
- add GL845 ASIC which is almost identical to the GL846
- add Opticbook 3800 to genesys backend
2013-06-26 06:51:55 +02:00
Alex Belkin 2f02a7e6b8 One more Samsung (C460) USB id. 2013-06-25 17:51:39 +04:00
Alex Belkin 547e8ba068 Added multiple Samsung USB IDs as reported by Mikhail Elhimov. 2013-06-22 00:32:16 +04:00
Stéphane Voltz b98f24990f add cap to SENSOR and BUTTON group 2013-06-18 21:08:00 +02:00
Rolf Bensch ec0344af85 fix test mode 2013-06-15 22:27:07 +02:00
Rolf Bensch 51028a2c0e disable TPU negatives scan
negatives scan has no benefit
disabling avoids confusion
2013-06-10 21:32:31 +02:00
Rolf Bensch acb4c5b2b5 new scanner Canon CanoScan 9000F Mark II 2013-06-10 21:23:19 +02:00
Stéphane Voltz 9a8b640d8d bug 314293 fix
- don't use non-existent end of records
2013-06-03 06:33:08 +02:00
Stéphane Voltz 40b5d75aa3 fix bug #314261 2013-05-27 10:41:32 +02:00
Jonathan Bravo Lopez 09666ae089 * backend/hp3900_rts8822.c: fix compilation warnings. 2013-05-11 01:36:03 +02:00
Rolf Bensch 50df7af5cc update copyright 2013-04-26 22:52:44 +02:00
Rolf Bensch 3ca8dbc460 new scanners Canon Pixma E510 and E610
all scanners need further testing
2013-04-24 11:25:53 +02:00
Rolf Bensch 75c32c0de8 new scanner Canon Pixma MX720
this scanner needs further testing
2013-04-24 10:02:15 +02:00
Rolf Bensch 5f1da65108 new scanner Canon i-SENSYS MF3010 2013-04-19 23:12:52 +02:00
Rolf Bensch db8a565bc1 new scanners Canon Pixma MG2200, MG3200, MG5400, MX390, MX450, MX520 and MX920
all scanners need further testing
2013-04-11 22:05:09 +02:00
m. allan noah 9fc683d883 fujitsu backend v116
add swskip option
add sanei_magic_isBlank2
2013-04-03 21:54:48 -04:00
m. allan noah 120e303732 fujitsu: call set_mode() in init_interlace 2013-04-03 21:54:48 -04:00
Stéphane Voltz e6f23f201d fix hotplug detection of devices for lexmark backend
- create a probe_lexmar_devices() and call it from sane_init
- call probe_lexmar_devices() from sane_get_devices to update device list
- use sanei_usb_exit() and sanei_usb_find_devices()
2013-04-02 21:05:02 +02:00
Stéphane Voltz a056cb238e handle scanner unplugging detection 2013-03-29 22:02:50 +01:00
Stéphane Voltz e0e19b413e handle scanner hot-plug in sane_get_devices
- rescan usb bus
- rescan for new devices
2013-03-29 21:54:46 +01:00
Stéphane Voltz 2190d18a63 move device detection in a dedicated function
- create a probe_gt68xx_devices() function that ssearch and attach
  matching scanners
2013-03-29 21:54:32 +01:00
Stéphane Voltz c025a47671 fix compile warning 2013-03-29 21:53:16 +01:00
Stéphane Voltz 6a8469dd13 use sanei_usb_exit() 2013-03-29 21:53:05 +01:00
Stéphane Voltz 010f34710e option correctness fixes
- fix wrong cap due to wrong addressing
- ensure correctness of group options
2013-03-27 06:31:49 +01:00
Stéphane Voltz 1656585499 warning fixes
- unused parameters
- wrong printf fromat
- assigned to self
2013-03-27 06:28:11 +01:00
Rolf Bensch 7fd2286414 fix button support 2013-03-25 10:30:59 +01:00
Stéphane Voltz 7070fac113 convert genesys backend to use new sanei_usb functions
- call sanei_usb_scan_devices() in sane_get_devices to rescan bus to refresh
  USB scanner list
- call sanei_usb_exit() in sane_exit to free allocated resources
2013-03-24 14:20:06 +01:00
Rolf Bensch 1ef0342aa1 new scanner Canon Pixma MP230 2013-03-21 19:10:03 +01:00
Stéphane Voltz 5e93524960 bug 314038 use after free
- apply patch from Nickolai Zeldovich (nickolai-guest) to
  fix use after free errors
2013-03-18 11:56:33 +01:00
Stéphane Voltz ac768dbd72 bug 314037 use after free
- apply patch from Nickolai Zeldovich (nickolai-guest) to
  fix a use after free error
2013-03-18 11:55:18 +01:00
Stéphane Voltz 10bd9ed2e5 bug 314036 use after free
- apply patch from Nickolai Zeldovich (nickolai-guest) to
  fix a use after free error
2013-03-18 11:55:08 +01:00
Stéphane Voltz b5369068ac bug 314035 use after free
- apply bug fix from Nickolai Zeldovich (nickolai-guest) for use after
  free
2013-03-18 11:30:16 +01:00
Stéphane Voltz 49a7048db0 bug 314042 sane-hp4200.patch
- apply patch from Nickolai Zeldovich (nickolai-guest) to fix a
  potential division by 0
2013-03-18 11:27:15 +01:00
Rolf Bensch 8c075ae0a0 fix image post processing for 1200dpi and 2400dpi 2013-03-15 22:44:22 +01:00
Rolf Bensch d8242a49a5 new scanner Canon Pixma MG6300 2013-03-15 22:39:54 +01:00
m. allan noah cb943124b8 Fujitsu backend v115
- separate s->mode into s_mode and u_mode
- separate s->params into s_params and u_params
- generate grayscale and binary in software if required (iX500)
2013-03-11 21:11:38 -04:00
Oliver Schwartz cfecc1fbf6 Added support for Acer/Benq Scanwit 2720S film scanner by Andrew Goodbody in snapscan backend. 2013-03-04 23:40:44 +01:00
m. allan noah 3c2bbdc7c3 Fujitsu backend v114
- support resolutions > 300 for iX500 using diag_preread()
- remove most communication with scanner during sane_control_option()
2013-03-01 21:57:54 -05:00
Stéphane Voltz 54742a1831 cppcheck errors and warnings fixes 2013-02-27 21:26:29 +01:00
Stéphane Voltz 6b78c69876 cppcheck errors and warings fixes 2013-02-27 21:26:28 +01:00
m. allan noah 36523e547d fujitsu backend v113
- support for ScanSnap iX500
- fix bug with jpeg de-interlacing code
- allow has_MS_* and has_pixelsize to be set in init_model
- fix use of uninitialized buffer in send_lut
- add send_q_table()
- allow wait_scanner() to be bypassed in object_position
- moved send_lut() to after set_window
2013-02-23 14:57:00 -05:00
m. allan noah 96628ed13f fujitsu backend v112
some scanners (fi-6x70 and later) don't enable IPC by default
fix minor compiler warning
2013-02-22 21:06:12 -05:00
Rolf Bensch 0349a3ddda push backend version to 0.17.2 2013-02-18 18:48:13 +01:00
Rolf Bensch 11ad6252fb scan IR channel with CS9000F 2013-02-18 18:07:50 +01:00
Rolf Bensch df33c7223f ease crop scan resolution to allowed values
add crop scan resolution for PIXMA_SCAN_MODE_TPUIR
2013-02-18 17:54:57 +01:00