* backend/fujitsu.c: copy_buffer() needs to count lines, or M309[12]

cannot scan in duplex
merge-requests/1/head
m. allan noah 2009-05-01 15:04:25 +00:00
rodzic dc74e3fa25
commit daa15a1cb1
2 zmienionych plików z 6 dodań i 0 usunięć

Wyświetl plik

@ -1,3 +1,7 @@
2009-05-01 m. allan noah <kitno455 a t gmail d o t com>
* backend/fujitsu.c: copy_buffer() needs to count lines, or M309[12]
cannot scan in duplex
2009-04-30 m. allan noah <kitno455 a t gmail d o t com>
* backend/fujitsu.c: ignore errors in scanner_control(),
M3091 has not worked since sane 1.0.19, due to this.

Wyświetl plik

@ -429,6 +429,7 @@
- return cmd status for reads on sensors
- ignore errors in scanner_control(),
M3091 has not worked since sane 1.0.19, due to this.
- copy_buffer needs to count lines, or M309[12] cannot duplex
SANE FLOW DIAGRAM
@ -7391,6 +7392,7 @@ copy_buffer(struct fujitsu *s, unsigned char * buf, int len, int side)
memcpy(s->buffers[side]+s->bytes_rx[side],buf,len);
s->bytes_rx[side] += len;
s->lines_rx[side] += len/s->params.bytes_per_line;
DBG (10, "copy_buffer: finish\n");