I'm learning to use libusb v1.0.0 for the first time on Ubuntu 12.10. Here is some small test code I'm using to try and understand how to use this API:
#include <libusb-1.0/libusb.h>
...
libusb_device **list;
libusb_get_device_list( ctx, &list ); // returns 11 USB devices which is correct
for ( size_t idx = 0; list[idx] != NULL; idx ++ )
{
libusb_device *dev = list[ idx ];
libusb_device_descriptor desc = {0};
int rc = libusb_get_device_descriptor( dev, &desc );
At this point, rc == 0 meaning it should have completed successfully. Source: http://libusb.sourceforge.net/api-1.0/group__desc.html#ga5e9ab08d490a7704cf3a9b0439f16f00
But the structure desc is always empty. None of the fields ever get set. If I change the last two lines above to this:
libusb_device_descriptor desc = {1, 2, 3, 4, 5, 6, 7, 8, 9};
int rc = libusb_get_device_descriptor( dev, &desc );
...then when libusb_get_device_descriptor() returns, I see desc remains unchanged, confirming for me that I'm not getting what I expect from this API.
I've also tried to run a.out as root just in case this requires elevated priveledges. Doing a Google search on libusb_get_device_descriptor hasn't gotten me anywhere.
Relevant commands I ran to try this code:
sudo apt-get install libusb-1.0.0-dev
g++ -ggdb test.cpp -lusb-1.0
./a.out
Thanks in advance for any tips or example code!
Ah! Crazy user error! sharth's code helped me figure it out. Here is the code I was actually using -- see if you can spot the error:
std::cout << "rc == " << libusb_get_device_descriptor( dev, &desc ) << std::endl
<< "vendor == " << desc.idVendor << std::endl;
I guess the way the compiler evaluates this, it is free to evaluate desc.idVendor before the call to libusb_get_device_descriptor() has actually been made. My bad.