Device::USB::DevConfig(3pm) | User Contributed Perl Documentation | Device::USB::DevConfig(3pm) |
This class encapsulates a USB Device Configuration and the methods that object would support.
Device::USB::DevConfig - Access the device configuration returned by libusb.
Version 0.38
Device::USB:DevConfig provides a Perl object for accessing a configuration of a USB device using the libusb library.
use Device::USB; my $usb = Device::USB->new(); my $dev = $usb->find_device( $VENDOR, $PRODUCT ); printf "Device: %04X:%04X\n", $dev->idVendor(), $dev->idProduct(); $dev->open(); my $cfg = $dev->config()->[0]; print "Config:", $cfg->iConfiguration(), ": interface count: ", $cfg->nNumInterfaces(), "\n";
See USB specification for an explanation of the attributes of a configuration.
This module defines a Perl object that represents the data associated with a USB device's configuration. The object provides read-only access to the important data associated with the configuration.
There are several accessor methods that return data from the configuration. Each is named after the field that they return. These accessors include:
This is an explanation of the diagnostic and error messages this module can generate.
This module depends on the Carp, Inline and Inline::C modules, as well as the strict and warnings pragmas. Obviously, libusb must be available since that is the entire reason for the module's existence.
G. Wade Johnson (gwadej at cpan dot org) Paul Archer (paul at paularcher dot org)
Houston Perl Mongers Group
Please report any bugs or feature requests to "bug-device-usb@rt.cpan.org", or through the web interface at <http://rt.cpan.org/NoAuth/ReportBug.html?Device::USB>. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
Thanks go to various members of the Houston Perl Mongers group for input on the module. But thanks mostly go to Paul Archer who proposed the project and helped with the development.
Copyright 2006-2013 Houston Perl Mongers
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
2022-11-29 | perl v5.36.0 |