Re: Mustek SE 12000 SP Plus

Marco G. Salvagno (mgs@whiz.cjb.net)
Thu, 23 Dec 1999 02:41:40 +0100 (CET)

On Tue, 21 Dec 1999 22:32:02 +0100, Ekkard Gerlach wrote:

>> Host: scsi2 Channel: 00 Id: 06 Lun: 00
>> Vendor: SCANNER Model: Rev: V100
>> Type: Scanner ANSI SCSI

>> [mustek] attach: firmware revision 38.00

>Is the firmware 1.00 or is it 38.00 ???????

It's 1.00. It looks like the mustek backend can't handle the Vxyz format,
and makes a mess when trying to interpret it.

I've made a modification to mustek.c to allow correct interpretation of
the firmware revision, line 611:

/* get firmware revision as BCD number: */
/* please note that the SE 12000SP Plus reports */
/* firmware version as 'Vxyz' instead of x.yz */
if (result[33] == '.')
fw_revision =
(result[32] - '0') << 8 | (result[34] - '0') << 4 | (result[35] -
'0');
else
fw_revision =
(result[33] - '0') << 8 | (result[34] - '0') << 4 | (result[35] -
'0');

>Did I purchase a very old model or a very new one ????

Don't know really. Having ordered a 12000 SP in October/November '99, I
was given a 12000 SP Plus, which reports V101.

--
Source code, list archive, and docs: http://www.mostang.com/sane/
To unsubscribe: echo unsubscribe sane-devel | mail majordomo@mostang.com