The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
Device-USB

This module provides a relatively complete Perl wrapper on the libusb
library. Using this module provides an object-oriented interface to any 
installed USB devices.

Obviously, the module requires a copy of the libusb library compiled for the
target system. The module also requires a C compiler compatible with the
Perl installation, because it uses the Inline::C module to create the 
interface to libusb.

TODO

The current version of the library does not fully support 'get_descriptor'.
This method currently returns a binary string containing the data, the code
to create a reasonable data structure has not yet been written.

The device objects also do not contain pointers back to their busses at this
time. This feature will be added once I am certain that it will not leak
memory.

INSTALLATION

To install this module, run the following commands:

    perl Makefile.PL
    make
    make test
    make install


SUPPORT AND DOCUMENTATION

After installing, you can find documentation for this module with the perldoc command.

    perldoc Device::USB

You can also look for information at:

    Search CPAN
        http://search.cpan.org/dist/Device-USB

    CPAN Request Tracker:
        http://rt.cpan.org/NoAuth/Bugs.html?Dist=Device-USB

    AnnoCPAN, annotated CPAN documentation:
        http://annocpan.org/dist/Device-USB

    CPAN Ratings:
        http://cpanratings.perl.org/d/Device-USB

COPYRIGHT AND LICENCE

Copyright (C) 2006 G. Wade Johnson

This program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.