aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/transport/libusb1_device_handle.cpp
Commit message (Collapse)AuthorAgeFilesLines
* usb: work on libusb code to use a single context across all callsJosh Blum2010-09-251-118/+0
| | | | | | | | libusb allocation stuff had been moved inside of smart pointer classes to handle automatic cleanup the public device handle implementation now holds an actual libusb device inside of it needs testing - all platforms
* usb: tweaks to usb code to cleanup properly and/or in error conditionsJosh Blum2010-09-241-4/+5
|
* usrp1: fixes to remove warnings and errors for usrp1 + libusb windowsJosh Blum2010-09-231-9/+9
|
* EEPROM burning in UHD. Changed some USB device handle stuff. Added ↵Nick Foster2010-08-311-6/+12
| | | | usrp_init_eeprom.cpp. Hacked up the firmware makefile to behave and to generate .bin EEPROM images instead of IHX.
* usrp1: Additional comments on libusb transport implemenationThomas Tsou2010-08-281-0/+3
|
* usrp1: Disable default debug output for libusb implementationsThomas Tsou2010-08-271-1/+1
|
* usrp1: Cleanup libusb device handlingThomas Tsou2010-08-271-24/+7
| | | | | | | | This patch limits all libusb device enumeration operations to FSF (Vendor ID = 0xfffe) devices, which removes a lot of unncessary libusb output when debug mode is enabled. The reference counts held by the libusb device list are also reduced, which prevents holding references to unused devices.
* usrp1: Only return a list of FSF devicesThomas Tsou2010-08-271-1/+12
|
* usrp1: Modifiy USB transport implementations to use new interfaceThomas Tsou2010-08-261-0/+114
Common libusb1 code is consolidated in the libusb base file.