aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/transport/libusb1_base.hpp
Commit message (Collapse)AuthorAgeFilesLines
* Added missing pure virtual destructors to base classesNicholas Corgan2014-09-011-1/+13
|
* usb: added timeout param and additional queriesJosh Blum2013-07-151-2/+2
|
* usb: use the proper libusb include (in path set by pkgconfig)Josh Blum2010-09-271-1/+1
|
* usb: added some documentation to wrapper baseJosh Blum2010-09-261-0/+7
|
* usb: work on libusb code to use a single context across all callsJosh Blum2010-09-251-57/+105
| | | | | | | | 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
* libusb: various minor code tweaksJosh Blum2010-09-231-3/+3
|
* EEPROM burning in UHD. Changed some USB device handle stuff. Added ↵Nick Foster2010-08-311-10/+0
| | | | 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/+60
|
* usrp1: Cleanup libusb device handlingThomas Tsou2010-08-271-0/+2
| | | | | | | | 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: Modifiy USB transport implementations to use new interfaceThomas Tsou2010-08-261-0/+42
Common libusb1 code is consolidated in the libusb base file.