[Hp5400backend-cvs-update] hp5400/hp5400 hp5400.c,1.20,1.21
Status: Alpha
Brought to you by:
soumarmt
|
From: <kl...@us...> - 2003-03-10 11:58:42
|
Update of /cvsroot/hp5400backend/hp5400/hp5400
In directory sc8-pr-cvs1:/tmp/cvs-serv17018
Modified Files:
hp5400.c
Log Message:
Add more registered codes for the different scans windows makes. There's
almost a pattern there, I just can't get it...
Index: hp5400.c
===================================================================
RCS file: /cvsroot/hp5400backend/hp5400/hp5400/hp5400.c,v
retrieving revision 1.20
retrieving revision 1.21
diff -C2 -d -r1.20 -r1.21
*** hp5400.c 10 Mar 2003 11:16:40 -0000 1.20
--- hp5400.c 10 Mar 2003 11:58:38 -0000 1.21
***************
*** 101,104 ****
--- 101,120 ----
} __attribute__((packed));
+ /* More known combos (All 24-bit):
+ 300 x 300 light calibration: 0x0000, 0x0010, 0x1820
+ 300 x 300 dark calibration: 0x0000, 0x0010, 0x3024
+ 75 x 75 preview scan: 0x0080, 0x0000, 0x18E8
+ 300 x 300 full scan: 0x0080, 0x0000, 0x18E8
+ 600 x 300 light calibration: 0x0000, 0x0010, 0x3000
+ 600 x 300 dark calibration: 0x0000, 0x0010, 0x3004
+ 600 x 600 full scan: 0x0080, 0x0000, 0x18C8
+ 1200 x 300 light calibration: 0x0000, 0x0010, 0x3000
+ 1200 x 300 dark calibration: 0x0000, 0x0010, 0x3004
+ 1200 x 1200 full scan: 0x0080, 0x0000, 0x18C8
+ 2400 x 300 light calibration: 0x0000, 0x0010, 0x3000
+ 2400 x 300 dark calibration: 0x0000, 0x0010, 0x3004
+ 2400 x 2400 full scan: 0x0080, 0x0000, 0x18C0
+ */
+
struct ScanResponse
{
|