[sane-devel] USB HP scanjet 4070 photo smart scanner not working on Fedora3

2006-01-06 Thread JKD
Hello,


El Thu, 05 de Jan de 2006, a las 11:04:25PM +0100, Henning Meier-Geinitz dijo:
 Hi,
 
 On 2006-01-05 16:06, gangaraju wrote:
  I have installed Fedora3(Linux-2.6.9),Kooka,xsane-0.92.
  I got a USB HP scanjet 4070 photo smart scanner recently.
 
 This scanner may work with the external hp3900 backend, at least its
 chipset is supported by that backend:
 http://sourceforge.net/projects/hp3900-series/
 
  Don't my machine has supported drivers???
 
 There is no support in the sane-backends distribution. As there
 doesn't seem to exist any experience with your scanner and the hp3900
 backend yet, its status is untested:
 
 http://www.sane-project.org/cgi-bin/driver.pl?manu=hewmodel=4070bus=any

Few days ago, some guy wrote a post in hp3900 forum talking about tests
with HP scanjet 4070 photo smart scanner:

http://sourceforge.net/forum/message.php?msg_id=3502580

  Jonathan Bravo Lopez



[sane-devel] USB HP scanjet 4070 photo smart scanner not working on Fedora3

2006-01-06 Thread Henning Meier-Geinitz
Hi,

On 2006-01-06 06:00, JKD wrote:
 Few days ago, some guy wrote a post in hp3900 forum talking about tests
 with HP scanjet 4070 photo smart scanner:
 
 http://sourceforge.net/forum/message.php?msg_id=3502580

So I guess I can list the support status of this scanner as minimal?
Any reports about the ScanJet 4370?

Bye,
  Henning


[sane-devel] which frontend part no. is used by GL646_HP chipset?

2006-01-06 Thread Parag N(पराग़)
hello,
   I want to know which part number is used by GL646_HP chipset. under
genesys_backend html page i found link to
http://www.wolfsonmicro.com/products/digital_imaging/ but dont know
which part to look for specification of GL646_HP chipset.
  I am using HP2400 scanner.
Regards,
Parag.


[sane-devel] USB HP scanjet 4070 photo smart scanner not working on Fedora3

2006-01-06 Thread JKD

El Fri, 06 de Jan de 2006, a las 10:05:39AM +0100, Henning Meier-Geinitz dijo:
 So I guess I can list the support status of this scanner as minimal?
 Any reports about the ScanJet 4370?
 

After sent post I supose the support status of hp 4070 is the same as
hp3970. Minimal. I've nothing about hp 4370 at this moment.

  Jonathan Bravo Lopez



[sane-devel] Benq 5150C / 5250C users: please test

2006-01-06 Thread Oliver Schwartz
Hi all,

I've added some basic support for the Benq 5150C / 5250C scanner to 
the snapscan backend. Anyone owning such a scanner is encouraged to 
test it and inform me of any problems.

You can get a snapshot of the latest SANE sources from 
http://www.sane-project.org/snapshots

At present the calibration algorithm for the 5150 / 5250 is unknown. 
The calibration data sent to the scanner is currently some static 
data which may or may not work for all scanners. I hope to get this 
fixed at some point. Anyone who'd like to look into it is welcome to 
contact me.

Regards,

Oliver


[sane-devel] (no subject)

2006-01-06 Thread Ben Tasker
Hi There,
Having just bought a Xerox 4800 One touch flatbed scanner and found it
unsupported (dont ask why i ddint check first) I am going to try and create
a SANE backend for it. Any help will be greatly appreciated, I assume there
is no other backend being developed for this scanner?
Should mention I have no idea how long it will take me to create the backend
as I havent really done much with SANE before, an interested browse through
the source perhaps but little more. I assume if I use an existing backend as
a template then I should still manage to create compatability with SANE.
Thanks

Ben

--
Please avoid sending me Word or PowerPoint attachments.
See http://www.gnu.org/philosophy/no-word-attachments.html
-- next part --
An HTML attachment was scrubbed...
URL: 
http://lists.alioth.debian.org/pipermail/sane-devel/attachments/20060106/390e2a60/attachment.htm
From bert...@zonnet.nl  Sat Jan  7 00:22:43 2006
From: bert...@zonnet.nl (Bertrik Sikken)
Date: Sat Jan  7 00:23:26 2006
Subject: [sane-devel] (no subject)
In-Reply-To: 6b8aa2ee0601061530g289a1a10wfdce41cdc7e27...@mail.gmail.com
References: 6b8aa2ee0601061530g289a1a10wfdce41cdc7e27...@mail.gmail.com
Message-ID: 43bf09d3.8060...@zonnet.nl

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Ben Tasker wrote:
 Hi There,
 Having just bought a Xerox 4800 One touch flatbed scanner and found it
 unsupported (dont ask why i ddint check first) I am going to try and
 create a SANE backend for it. Any help will be greatly appreciated, I
 assume there is no other backend being developed for this scanner?
 Should mention I have no idea how long it will take me to create the
 backend as I havent really done much with SANE before, an interested
 browse through the source perhaps but little more. I assume if I use an
 existing backend as a template then I should still manage to create
 compatability with SANE.

How long it takes depends on a lot of things, but expect something
like 6 months or longer.

Is it an USB scanner? If so, please post the USB vendor and product
ids here (use something like lsusb). There is a chance that there
is already a driver for it.
There is a tool called sane-find-scanner, run it and see what it
reports.

You need to know what's chipset is inside your scanner.
If you know the chipset, you can tehn try to find a datasheet
that describes how to program it. It's not common to find one
though...

Try the check-usb-chip tool, it attempts to identify some known
scanner chips.
Sometimes you can get clues by peeking in the windows driver
files (for example the .inf's) or by looking in the registry.
If you haven't been able to find out more (using the tools
mentioned above), you can perhaps get some more information
by opening it up and taking note of the chip numbers.

If you really need to write a new backend from scratch, you
can use USB sniffer software like http://benoit.papillault.free.fr/usbsnoop/
to capture some USB packets from the windows driver.
When you have taken some, put them up on a website somewhere
and post a link to the mailing list.
Even though the scanner chip may be different from other
scanners, the transport protocol may be similar.

I think it is best to first start with a very simple test
tool that replays some of the captured data. Layer it up
in three parts:
* transport layer that reads/write register settings and
reads/write bulk data. Use libusb to talk to usb.
In the final sane backend, you easily adapt this layer to use
sanei_usb* functions (API is very similar to libusb)
* a core layer that implements the basic functionality for
doing a scan (switching the lamp, moving the carriage, doing
a scan with certain parameters)
* user-interface layer. For the test tool this is simply a
command line / argument parser that calls specific test functions
in the core layer. In the final sane backend, this layer
glues the sane backend interface to your core layer.

I think there's a backend-writing.txt (or something similar)
that describes best practices for coding style etc. to allow
easy integration into sane.

Kind regards,
Bertrik
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.1 (MingW32)
Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org

iD8DBQFDvwnTETD6mlrWxPURAoQZAJ91H5yH0QsnZFh/yA5zeFPjpmB/OACfenu4
OoDKxBFSbNsMluAMOOPexNk=
=Nxr7
-END PGP SIGNATURE-