sane-project-website/old-archive/1999-12/0160.html

78 wiersze
3.2 KiB
HTML

<!-- received="Wed Dec 22 17:54:30 1999 PST" -->
<!-- sent="Thu, 23 Dec 1999 02:41:40 +0100 (CET)" -->
<!-- name="Marco G. Salvagno" -->
<!-- email="mgs@whiz.cjb.net" -->
<!-- subject="Re: Mustek SE 12000 SP Plus" -->
<!-- id="19991223015456.KEGD29093.fep02-svc@leon.libero.it" -->
<!-- inreplyto="385FF1D2.DB355201@online.de" -->
<title>sane-devel: Re: Mustek SE 12000 SP Plus</title>
<h1>Re: Mustek SE 12000 SP Plus</h1>
<b>Marco G. Salvagno</b> (<a href="mailto:mgs@whiz.cjb.net"><i>mgs@whiz.cjb.net</i></a>)<br>
<i>Thu, 23 Dec 1999 02:41:40 +0100 (CET)</i>
<p>
<ul>
<li> <b>Messages sorted by:</b> <a href="date.html#160">[ date ]</a><a href="index.html#160">[ thread ]</a><a href="subject.html#160">[ subject ]</a><a href="author.html#160">[ author ]</a>
<!-- next="start" -->
<li> <b>Next message:</b> <a href="0161.html">David Rose: "Minolta development commences"</a>
<li> <b>Previous message:</b> <a href="0159.html">Jonathan A. Buzzard: "Re: Umax 2000p"</a>
<!-- nextthread="start" -->
<li> <b>Next in thread:</b> <a href="0168.html">Martin Heinen: "Re: Mustek SE 12000 SP Plus"</a>
<li> <b>Reply:</b> <a href="0168.html">Martin Heinen: "Re: Mustek SE 12000 SP Plus"</a>
<!-- reply="end" -->
</ul>
<!-- body="start" -->
On Tue, 21 Dec 1999 22:32:02 +0100, Ekkard Gerlach wrote:<br>
<p>
<i>&gt;&gt; Host: scsi2 Channel: 00 Id: 06 Lun: 00</i><br>
<i>&gt;&gt; Vendor: SCANNER Model: Rev: V100</i><br>
<i>&gt;&gt; Type: Scanner ANSI SCSI </i><br>
<p>
<i>&gt;&gt; [mustek] attach: firmware revision 38.00</i><br>
<p>
<i>&gt;Is the firmware 1.00 or is it 38.00 ??????? </i><br>
<p>
It's 1.00. It looks like the mustek backend can't handle the Vxyz format,<br>
and makes a mess when trying to interpret it.<br>
<p>
I've made a modification to mustek.c to allow correct interpretation of<br>
the firmware revision, line 611:<br>
<p>
/* get firmware revision as BCD number: */<br>
/* please note that the SE 12000SP Plus reports */<br>
/* firmware version as 'Vxyz' instead of x.yz */<br>
if (result[33] == '.')<br>
fw_revision =<br>
(result[32] - '0') &lt;&lt; 8 | (result[34] - '0') &lt;&lt; 4 | (result[35] -<br>
'0');<br>
else<br>
fw_revision =<br>
(result[33] - '0') &lt;&lt; 8 | (result[34] - '0') &lt;&lt; 4 | (result[35] -<br>
'0');<br>
<p>
<p>
<p>
<i>&gt;Did I purchase a very old model or a very new one ????</i><br>
<p>
Don't know really. Having ordered a 12000 SP in October/November '99, I<br>
was given a 12000 SP Plus, which reports V101.<br>
<p>
<p>
<p>
<p>
<pre>
--
Source code, list archive, and docs: <a href="http://www.mostang.com/sane/">http://www.mostang.com/sane/</a>
To unsubscribe: echo unsubscribe sane-devel | mail <a href="mailto:majordomo@mostang.com">majordomo@mostang.com</a>
</pre>
<!-- body="end" -->
<p>
<ul>
<!-- next="start" -->
<li> <b>Next message:</b> <a href="0161.html">David Rose: "Minolta development commences"</a>
<li> <b>Previous message:</b> <a href="0159.html">Jonathan A. Buzzard: "Re: Umax 2000p"</a>
<!-- nextthread="start" -->
<li> <b>Next in thread:</b> <a href="0168.html">Martin Heinen: "Re: Mustek SE 12000 SP Plus"</a>
<li> <b>Reply:</b> <a href="0168.html">Martin Heinen: "Re: Mustek SE 12000 SP Plus"</a>
<!-- reply="end" -->
</ul>