I'm (going to be) writing an application in Qt that will run on the 3 main OSes (Windows, Linux and Mac). One of the features of this app is that it needs USB to talk to a piece of custom external hardware. Would anyone know of a cross platform USB library so porting is as easy as possible? Or am I going to be slugging it out on Windows because Microsoft's overpaid developers can't write proper APIs? (sorry for mini rant)

James

link|improve this question

Does the custom hardware speak HID over USB, or use the serial line directly? – nmichaels Oct 12 '10 at 16:53
Probably a serial link. It's an ATMega USB chip, with the LUFA USB library, which has support for both but a serial link is probably the most likely option. – JamWaffles Oct 12 '10 at 16:55
Ahh, but on Windows you can find a dozen-and-a-half third-party libraries for $$$ ;-) – pst Oct 12 '10 at 17:00
@pst ONLY $$$? Nice! That's plenty much good value! I'll have to buy some of those pronto! Wait... ;P – JamWaffles Oct 12 '10 at 18:27
feedback

1 Answer

up vote 5 down vote accepted

Try libusb.

Supported operating systems: Linux, FreeBSD, NetBSD, OpenBSD, Darwin, MacOS X (and Windows, through the libusb-win32 project).

But you should note that it uses libusb0.sys kernel-mode driver on Windows, which is not WHQL certified and it could be a problem in 64-bit Windows 7 and Windows Server 2008 R2. Sorry, version 1.2.0.0 of libusb0.sys is digitally signed.

link|improve this answer
Thank you! Just the info I needed. – JamWaffles Oct 12 '10 at 18:26
The problem with using libusb-win32 is that it's a port of libusb-0.1, which isn't compatible with libusb-1.0. However libusb-1.0 now appears to support Windows natively. – trojanfoe Sep 6 '11 at 10:57
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.