Re: Reading from USB devices

2008-07-21 Thread Lowell Gilbert
Andrew Falanga [EMAIL PROTECTED] writes:

 I'd like to read data from a USB device that is not a thumb drive.
 How would I do this?  For instance, it's an oximeter for reading
 biometrics.  What libraries exist for reading things like VID/PID, and
 most importantly, reading the data from the device?

Start with usb(4).  HID devices tend to be easier to deal with than
others, but I doubt your instruments are in that category.

-- 
Lowell Gilbert, embedded/networking software engineer, Boston area
http://be-well.ilk.org/~lowell/
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Reading from USB devices

2008-07-21 Thread Chuck Robey
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Lowell Gilbert wrote:
 Andrew Falanga [EMAIL PROTECTED] writes:
 
 I'd like to read data from a USB device that is not a thumb drive.
 How would I do this?  For instance, it's an oximeter for reading
 biometrics.  What libraries exist for reading things like VID/PID, and
 most importantly, reading the data from the device?
 
 Start with usb(4).  HID devices tend to be easier to deal with than
 others, but I doubt your instruments are in that category.
 

Actually, if it was a thumb drive, yes it would surely not be a hid device, but
an oximeter?  Seems like it stands a very good chance, and it's easy enough to
check, just see if it can run the uhid driver.  If it comes up as the uhid (just
kill off the ugen for a run) then it's a uhid.

I disagree that its all that easy even then, because you need to know how to
read the report descriptor.  Kai Wang's krepdump util will give you the report
descriptor in binary, and if you needed help in parsing it, I wrote a helpful
demonstration hid parser, in python (with a nice GUI), if you have python with
tkinter working, then give me a email, I'll email the stuff to you,  it's only a
25K tarball.

If you read that descriptor, it gives you enough info to be able to parse the
stuff coming from the oximeter, so just loop a C program using read(), to pick
up the bytes.  All the info needed to do that's in the report descriptor.
-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.9 (FreeBSD)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iEYEARECAAYFAkiEpbwACgkQz62J6PPcoOlmUQCeKQoRJUa5FpPctCuh1dB0nPDC
YpwAnAw2I7a8cg778TBVpioEl7P33BWF
=KCaA
-END PGP SIGNATURE-
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Reading from USB devices

2008-07-19 Thread Andrew Falanga

Hi,

I'd like to read data from a USB device that is not a thumb drive.  How 
would I do this?  For instance, it's an oximeter for reading 
biometrics.  What libraries exist for reading things like VID/PID, and 
most importantly, reading the data from the device?


Thanks,
Andy
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]