* doc/u12/U12.changes: Update.

* backend/u12.c: Bumped build number.
* backend/u12-hw.c: SoftwareReset is now disabled in
  cancelSequence when the device is a Genius scanner.
merge-requests/1/head
Gerhard Jaeger 2006-02-14 10:26:39 +00:00
rodzic 28a876983c
commit 938a9719ce
4 zmienionych plików z 30 dodań i 12 usunięć

Wyświetl plik

@ -1,3 +1,12 @@
2006-02-14 Gerhard Jaeger <gerhard@gjaeger.de>
* doc/u12/U12.changes: Update.
* backend/u12.c: Bumped build number.
* backend/u12-hw.c: SoftwareReset is now disabled in
cancelSequence when the device is a Genius scanner.
Fixed CanoScan N1220U settings.
2006-02-13 Stéphane Voltz <stefdev@modulonet.fr>
* backend/genesys_gl646.c: disabled power saving for gl646.

Wyświetl plik

@ -7,6 +7,8 @@
* - 0.01 - initial version
* - 0.02 - cleanup
* - added lampTimer stuff
* - fixed issue for Genius device - reported by
* Jose Alberto Reguero <jareguero@telefonica.net>
* .
* <hr>
* This file is part of the SANE package.
@ -804,6 +806,8 @@ static void u12hw_CancelSequence( U12_Device *dev )
u12io_DataToRegister( dev, REG_MODELCONTROL, 0x1a );
u12hw_PutToIdleMode( dev );
if( strcmp( dev->usbId, "0x0458-0x2004" ))
u12io_SoftwareReset( dev );
u12motor_PositionModuleToHome( dev );

Wyświetl plik

@ -80,7 +80,7 @@
#include "../include/sane/sanei.h"
#include "../include/sane/saneopts.h"
#define BACKEND_VERSION "0.02-9"
#define BACKEND_VERSION "0.02-10"
#define BACKEND_NAME u12
#include "../include/sane/sanei_backend.h"
#include "../include/sane/sanei_config.h"

Wyświetl plik

@ -26,3 +26,8 @@ V 0.02-9 (2004-06-10)
---------------------
- using now SANE definitions for scanmodes
V 0.02-10 (2006-14-02)
----------------------
- SoftwareReset is now disabled in cancelSequence when the device
is a Genius (reported by Jose Alberto Reguero <jareguero@telefonica.net>)