Skip to content
pbatard edited this page Jul 5, 2012 · 29 revisions

A cross-platform user-mode library, for generic access to USB devices

Table of Contents

Description

About

libusbx is a cross-platform user-mode library that provides access to USB devices.

It is intended to serve as both a replacement and improvement over libusb, as the latter has barely managed to produce one release in 2 years and does not actively seek the inclusion of user-requested features, such as topology, HID or hotplug support.

Whether you already have an existing libusb application or plan to develop a new one, we encourage you to consider using libusbx as the better alternative, especially as it provides a drop-in replacement for existing libusb based code.

Features

  • Supports all the major platforms: Linux, OS X, OpenBSD and Windows
  • Supports all versions of USB, from 1.0 to 3.0
  • Unified modern API, that provides both synchronous and asynchronous access
  • User-mode: no need for kernel access

Downloads

All libusbx releases can be accessed from the releases directory.

Documentation

  • The libusbx-1.0 API Reference can be accessed HERE
  • A FAQ is also available.

Development

Supported Environments

  • Linux [status: Stable]
    • Any modern Linux system with usbfs
  • OS X [status: Stable]
    • Any modern version of OS X (PowerPC or x86 either in 32 and 64 bits)
  • Windows [status: EXPERIMENTAL → Stable]
    • MinGW (32 bit) or MinGW-w64. To compile a library that is both 32 and 64 bit compatible, you should use a version of MinGW-w64 that supports both -m32 and -m64 (a.k.a. "multilib"). A pre-built multilib version can be downloaded with TDM64.
    • Microsoft Visual C++ (Visual Studio).
    • Windows DDK build environment
  • OpenBSD and NetBSD [status: EXPERIMENTAL]
    • Only device with ugen driver are supported
More information on the Windows implementation can be obtained from the Windows Backend page.

Note: FreeBSD 8 and above include a FreeBSD-specific reimplementation of the libusbx/libusb API, so your applications will probably work there too. The source code for this library can be found here.

If you are interested in porting to other platforms, the PORTING file tells you where to start. We are more than happy to help out here, please write to the mailing list with your questions and feedback.

Source

The latest development tree is always available from git.

For those not familiar with git, here are the commands one can use retrieve libusbx:

# retrieve development branch (this only needs to be done once)
git clone git://github.com/libusbx/libusbx.git
cd libusbx
# for further updates, once the clone has been done
git pull                                                           

You can also browse the git development tree from https://github.com/libusbx/libusbx.

Also note that, when compiling from git, you may have to run ./autogen.sh or run the autotools creation utilities, in order to have configure and Makefile created for you.

To create projects relying on libusbx, please refer to the samples in the examples/ subdirectory.

Open Source Project using libusbx/libusb

Language Bindings

Other resources

Clone this wiki locally