sane-project-website/old-archive/1998-07/0043.html

150 wiersze
7.2 KiB
HTML
Czysty Zwykły widok Historia

<!-- received="Tue Jul 14 07:17:36 1998 PDT" -->
<!-- sent="Tue, 14 Jul 1998 16:17:01 +0200" -->
<!-- name="Helmut Koeberle" -->
<!-- email="helmut.koeberle@bytec.de" -->
<!-- subject="Re: Canon IX-4015, who to contact" -->
<!-- id="" -->
<!-- inreplyto="Canon IX-4015, who to contact" -->
<title>sane-devel: Re: Canon IX-4015, who to contact</title>
<h1>Re: Canon IX-4015, who to contact</h1>
<b>Helmut Koeberle</b> (<a href="mailto:helmut.koeberle@bytec.de"><i>helmut.koeberle@bytec.de</i></a>)<br>
<i>Tue, 14 Jul 1998 16:17:01 +0200</i>
<p>
<ul>
<li> <b>Messages sorted by:</b> <a href="date.html#43">[ date ]</a><a href="index.html#43">[ thread ]</a><a href="subject.html#43">[ subject ]</a><a href="author.html#43">[ author ]</a>
<!-- next="start" -->
<li> <b>Next message:</b> <a href="0044.html">Matto Marjanovic: "Need... more... .desc... files"</a>
<li> <b>Previous message:</b> <a href="0042.html">Berend Reitsma: "Canon IX-4015, who to contact"</a>
<li> <b>Maybe in reply to:</b> <a href="0042.html">Berend Reitsma: "Canon IX-4015, who to contact"</a>
<!-- nextthread="start" -->
<!-- reply="end" -->
</ul>
<!-- body="start" -->
This is a multi-part message in MIME format.<br>
--------------C4C530E33C9EE658CC553EAD<br>
Content-Type: text/plain; charset=us-ascii<br>
Content-Transfer-Encoding: 7bit<br>
<p>
Berend Reitsma wrote:<br>
<p>
<i>&gt; Hello folks,</i><br>
<i>&gt;</i><br>
<i>&gt; I have a Canon IX-4015 which I want to use with SANE under Linux.</i><br>
<i>&gt; I have asked Canon Benelux for technical information on this scanner, but</i><br>
<i>&gt; they could not give this directly. They only could send an official</i><br>
<i>&gt; request to their 'research organisation' if we were an company with a</i><br>
<i>&gt; research department.</i><br>
<i>&gt;</i><br>
<i>&gt; My question is now, should I continue this through Canon Benelux or should</i><br>
<i>&gt; I contact another department of Canon. This will be a private development</i><br>
<i>&gt; and not supported directly from our company.</i><br>
<i>&gt;</i><br>
<i>&gt; Maybe a better question is if someone already has this information and</i><br>
<i>&gt; would like to get in contact with me. I already sent a message to Helmut</i><br>
<i>&gt; Koeberle (the maintainer of the canon backend) some time ago, but I did</i><br>
<i>&gt; not get an answer from him.</i><br>
<i>&gt;</i><br>
<i>&gt; My results until now:</i><br>
<i>&gt;</i><br>
<i>&gt; By disabling the check on results for setting the window, resolution and</i><br>
<i>&gt; so on, I am able to get a picture from the scanner, which resembles in</i><br>
<i>&gt; some manner to the picture I did expect ;-).</i><br>
<i>&gt;</i><br>
<i>&gt; BTW: I have changed sanei_scsi to display the sense key in case of</i><br>
<i>&gt; errno=0. Maybe this is usefull for other people too, so I have attached a</i><br>
<i>&gt; diff.</i><br>
<i>&gt;</i><br>
<i>&gt; Regards,</i><br>
<i>&gt; Berend.</i><br>
<i>&gt;</i><br>
<i>&gt; --</i><br>
<i>&gt;</i><br>
<i>&gt; Berend Reitsma</i><br>
<i>&gt;</i><br>
<i>&gt; Asset Control International | Phone: +31 (0)513 469100</i><br>
<i>&gt; P.O. Box 10 | Fax: +31 (0)513 461588</i><br>
<i>&gt; 8408 ZH Lippenhuizen | Email: <a href="mailto:berend@asset-control.com">berend@asset-control.com</a></i><br>
<i>&gt; The Netherlands | Web: www.asset-control.com</i><br>
<i>&gt;</i><br>
<i>&gt; ------------------------------------------------------------------------</i><br>
<i>&gt; --- sanei/sanei_scsi.c.orig Tue Jul 14 13:35:22 1998</i><br>
<i>&gt; +++ sanei/sanei_scsi.c Tue Jun 30 16:27:32 1998</i><br>
<i>&gt; @@ -1123,10 +1123,24 @@</i><br>
<i>&gt; SANEI_SCSI_Sense_Handler handler</i><br>
<i>&gt; = fd_info[req-&gt;fd].sense_handler;</i><br>
<i>&gt; void *arg = fd_info[req-&gt;fd].sense_handler_arg;</i><br>
<i>&gt; -</i><br>
<i>&gt; - DBG(1, "sanei_scsi_req_wait: SCSI command complained: %s\n",</i><br>
<i>&gt; - strerror (req-&gt;cdb.hdr.result));</i><br>
<i>&gt; -</i><br>
<i>&gt; +</i><br>
<i>&gt; + if (req-&gt;cdb.hdr.result != 0)</i><br>
<i>&gt; + {</i><br>
<i>&gt; + DBG(1, "sanei_scsi_req_wait: SCSI command complained: %s\n",</i><br>
<i>&gt; + strerror (req-&gt;cdb.hdr.result));</i><br>
<i>&gt; + }</i><br>
<i>&gt; + else</i><br>
<i>&gt; + {</i><br>
<i>&gt; + DBG(1, "sanei_scsi_req_wait: SCSI sense: %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x\n",</i><br>
<i>&gt; + req-&gt;cdb.hdr.sense_buffer[0], req-&gt;cdb.hdr.sense_buffer[1],</i><br>
<i>&gt; + req-&gt;cdb.hdr.sense_buffer[2], req-&gt;cdb.hdr.sense_buffer[3],</i><br>
<i>&gt; + req-&gt;cdb.hdr.sense_buffer[4], req-&gt;cdb.hdr.sense_buffer[5],</i><br>
<i>&gt; + req-&gt;cdb.hdr.sense_buffer[6], req-&gt;cdb.hdr.sense_buffer[7],</i><br>
<i>&gt; + req-&gt;cdb.hdr.sense_buffer[8], req-&gt;cdb.hdr.sense_buffer[9],</i><br>
<i>&gt; + req-&gt;cdb.hdr.sense_buffer[10], req-&gt;cdb.hdr.sense_buffer[11],</i><br>
<i>&gt; + req-&gt;cdb.hdr.sense_buffer[12], req-&gt;cdb.hdr.sense_buffer[13],</i><br>
<i>&gt; + req-&gt;cdb.hdr.sense_buffer[14], req-&gt;cdb.hdr.sense_buffer[15]);</i><br>
<i>&gt; + }</i><br>
<i>&gt; if (req-&gt;cdb.hdr.result == EBUSY)</i><br>
<i>&gt; status = SANE_STATUS_DEVICE_BUSY;</i><br>
<i>&gt; else if (handler)</i><br>
<p>
Hi,<br>
<p>
sorry for answering so late, but i'm very busy at the moment.<br>
i already got the documentation for an IX-4015 and i will send<br>
you an e-mail, how to get it.<br>
<p>
Bye<br>
H. Koeberle<br>
<p>
--------------C4C530E33C9EE658CC553EAD<br>
Content-Type: text/x-vcard; charset=us-ascii; name="vcard.vcf"<br>
Content-Transfer-Encoding: 7bit<br>
Content-Description: Card for Helmut Koeberle<br>
Content-Disposition: attachment; filename="vcard.vcf"<br>
<p>
begin: vcard<br>
fn: Helmut Koeberle<br>
n: Koeberle;Helmut<br>
org: BYTEC GmbH<br>
adr: Karlstra<72>e 17;;;Tettnang;;D-88069;Germany<br>
email;internet: <a href="mailto:helmut.koeberle@bytec.de">helmut.koeberle@bytec.de</a><br>
title: Diplom-Mathematiker<br>
tel;work: +49 7542 9306 30<br>
tel;fax: +49 7542 9306 90<br>
x-mozilla-cpt: ;0<br>
x-mozilla-html: FALSE<br>
version: 2.1<br>
end: vcard<br>
<p>
<p>
--------------C4C530E33C9EE658CC553EAD--<br>
<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="0044.html">Matto Marjanovic: "Need... more... .desc... files"</a>
<li> <b>Previous message:</b> <a href="0042.html">Berend Reitsma: "Canon IX-4015, who to contact"</a>
<li> <b>Maybe in reply to:</b> <a href="0042.html">Berend Reitsma: "Canon IX-4015, who to contact"</a>
<!-- nextthread="start" -->
<!-- reply="end" -->
</ul>