aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/transport
Commit message (Collapse)AuthorAgeFilesLines
...
* | Merge branch 'maint'Martin Braun2016-03-111-2/+2
|\|
| * Fixed minor warnings:Nicholas Corgan2016-03-041-2/+2
| | | | | | | | | | | | * nirio_driver_iface_win: labeled unused variable for MinGW builds * b200_impl: fixed unreferenced variable warning * n200_image_loader: fixed signed vs. unsigned comparison
* | Merge branch 'maint'Ashish Chaudhari2016-02-182-5/+5
|\| | | | | | | | | | | Conflicts: host/lib/usrp/cores/gpio_core_200.cpp host/lib/usrp/dboard/db_ubx.cpp
| * Corrected the UHD behavior in the event of a USB disconnectDaulPavid2016-02-122-5/+5
| |
* | fixed a orthography typo; funnier if you're German.Marcus Müller2015-12-311-3/+3
| |
* | cmake: Cleaned up output, removed duplicate OctoClock component registrationMartin Braun2015-11-171-0/+1
| |
* | cmake: Register components earlierMartin Braun2015-11-161-5/+0
| | | | | | | | | | | | | | | | | | | | All device-specific CMake components are now registered in one place, before the host/lib/ subdirs are sourced. This way, there are no cyclic dependencies. This solves the issue where ENABLE_X300=Off could disable USB, but preserves the fix where ENABLE_X300=Off would still build some X300 codes.
* | cmake: Proper selection of files for ENABLE_X300Martin Braun2015-10-262-4/+12
| |
* | transport: Fix bug where stop commands could erroneously throwMartin Braun2015-09-101-1/+3
| |
* | transport: Fail for multi-chan-rx + stream_nowMartin Braun2015-09-081-0/+4
|/
* Fixed minor warningsNicholas Corgan2015-09-011-3/+2
| | | | | | * Unreferenced exceptions in try-catch statements * Incorrect function documentation * Unlabelled unused variables
* nirio: Changes to kernel proxy to work with RIO 15.0 on linuxAshish Chaudhari2015-08-143-46/+655
| | | | | - Implemented IOCTL macro for linux and macosx - Refactored v1 and v2 proxy code
* Transport: Update flow control on overrunsJohannes Walter2015-08-131-0/+5
| | | | | | X300 stops sending packets when too many overruns occur. This presumably happens due to a lock up in the source flow control. In this patch we force a flow control update every time an overrun occurs.
* C API cleanup, feature additionsNicholas Corgan2015-08-121-2/+2
| | | | | | * Cleaned up usage of handles vs. handle pointers * Store global string for last error thrown * Removed uhd::device_addr_t handle, added std::vector<std::string> handle
* UHD: Change libusb_error_name() to libusb_strerror() to improve error outputmichael-west2015-08-121-2/+2
|
* b200: fix libusb exceptions to work with that expected by b200 impl ↵Michael Dickens2015-08-111-3/+3
| | | | exception handling which uses uhd::usb_error (not uhd::runtime_error).
* cmake: added variable to LIBUHD_REGISTER_COMPONENT macro to make required, ↵Nicholas Corgan2015-08-111-2/+2
| | | | | | set LibUHD to required * If required component's dependencies aren't met, CMake will throw an error unless user specifically disables it
* UHD: libusb_strerror compatibility with older versions of libusbmichael-west2015-08-062-17/+23
|
* libusb: Fixed Windows build issueAshish Chaudhari2015-08-061-5/+5
| | | | | | - Introduced in b08352f267730ea417ec345cd90833a6746a1114. ERROR is a macro included through some windows specific header. Replaced with STATUS_ERROR.
* Fix for BUG 869: UHD: Unhandled exceptions during destruction of multi_usrp ↵michael-west2015-08-053-22/+60
| | | | | | | object cause application to terminate - Prevented libusb_zero_copy_single from submitting transfers after libusb reports an error - Made error messages in libusb_zero_copy and udp_zero_copy more descriptive
* b200: Change init sequence to catch bad USB statesBalint Seeber2015-08-033-2/+21
| | | | | - Fixes USB hang issues on OS X - Uses usb_errors
* Fixed minor warningsNicholas Corgan2015-07-241-1/+1
|
* build: Python 3 compatibility for build scriptsNicholas Corgan2015-07-141-8/+8
|
* uhd: Replacing Cheetah w/ Mako 0.4.2 (allows Python 3 compat)Martin Braun2015-07-141-149/+120
|
* Merge branch 'maint'Ashish Chaudhari2015-04-231-0/+1
|\ | | | | | | | | | | Conflicts: host/lib/usrp/b200/b200_impl.cpp host/lib/usrp/b200/b200_impl.hpp
| * B200: UHD now detects loaded FW on NI-USRP devicesBen Hilburn2015-04-151-0/+1
| | | | | | | | | | Conflicts: host/lib/transport/libusb1_base.cpp
* | Merge branch 'maint'Martin Braun2015-03-271-2/+3
|\|
| * usrp1: fixed check for loaded firmwareNicholas Corgan2015-03-271-2/+3
| |
* | Fixed master-specific warningsNicholas Corgan2015-03-271-3/+3
| | | | | | | | | | * MinGW: unused parameter warning, MSVC-specific pragma * MSVC: bool narrowing
* | Merge branch 'maint'Martin Braun2015-03-273-25/+27
|\|
| * Warning fixesNicholas Corgan2015-03-277-43/+51
| | | | | | | | | | | | | | * CMake now not applying C++ flags to C files * GCC 4.4: anti-aliasing rules * MSVC: narrowing, differences in subclass function parameters * Clang: uninitialized variables
* | uhd: Fixed multiple compiler warningsMichael Dickens2015-03-111-1/+1
| | | | | | | | | | | | - Use ULL and LL etc. so compiler doesn't need to decide constant's types - define the empty 'while' loop to include {} to make older compilers happy - Use explicit type names for BOOST_CHECK_EQUAL
* | nirio: hopefully fix #pragma declarations; "push" and "pop" introduced in ↵Michael Dickens2015-03-114-18/+24
| | | | | | | | GCC 4.6; works with all clang.
* | nirio: when unsupported, comment out unused variables.Michael Dickens2015-03-111-16/+16
| |
* | Merge branch 'maint' into masterBen Hilburn2015-01-283-111/+5
|\| | | | | | | | | | | | | | | | | Resolved Conflicts: host/docs/usrp_e3x0.dox host/include/uhd/utils/paths.hpp host/lib/transport/nirio/nifpga_lvbitx.cpp host/lib/usrp/b200/b200_impl.cpp host/lib/utils/paths.cpp
| * Merging new UHD_IMAGES_DIR utilities and bug fixes.Ben Hilburn2015-01-273-111/+5
| | | | | | | | Also includes NI-USRP Windows Registry Key fixes.
* | Added support for MinGW cross-compileNicholas Corgan2015-01-131-1/+1
| | | | | | | | | | | | * Added CMake toolchain file, compatible with different versions * No dependency on MinGW runtime, all statically linked * Misc coding tweaks to allow MinGW to compile
* | x300: support new 120 MHz bandwidth versions of the NI-branded X310sBrooks2014-12-221-1/+1
| |
* | Adding support for NI VID + PIDs for USRP B2xx devices.Ben Hilburn2014-12-181-7/+13
| |
* | Merge branch 'maint'Martin Braun2014-12-151-3/+4
|\| | | | | | | | | Conflicts: host/examples/rx_samples_to_file.cpp
| * nirio: Address linking issues on OSXMartin Braun2014-12-151-3/+4
| |
* | transport: Made CHDR-related routines separate from VRTMartin Braun2014-12-032-0/+183
|/ | | | | | Our VRT routines have the option to switch, on the fly, between VRLP and CHDR. This adds new CHDR-specific (un-)packers, which can only work with CHDR.
* bugfix: UHD does not build in msvc when USB feature is disabledAshish Chaudhari2014-10-141-0/+4
|
* nirio: Made new nirio iface code compile with GCCAshish Chaudhari2014-10-103-14/+13
| | | | - Addressed GCC specific errors and warnings
* x300,nirio: Added support for NI-RIO 14.0Ashish Chaudhari2014-10-109-320/+1251
| | | | | | | | | - Split niriok_proxy interfaces to support NI-RIO <=13.0 and >=14.0 kernel interfaces - Fixed multi-session race conditions by synchronizing niriok_proxy access - Fixed bug switching from NI LV-FPGA access to UHD access by changing how devices are hashed into a reservation table - Fixed calculation of FRAC values for CBX and SBX LO tuning by rounding instead of truncating - Fixed bug that was not setting two MSBs for band select configuration of CBX LO - Submitting on behalf of Patrick Sisterhen, Matthew Crymble
* x300: Bugfix#602: X3x0 not found over PCIe with no Eth interfacesAshish Chaudhari2014-10-091-1/+6
| | | | - X3x0 not found over PCIe when only a loopback network interface exists on the host
* Added missing pure virtual destructors to base classesNicholas Corgan2014-09-016-6/+58
|
* BUG #465: UHD: "Error: Connection refused" for USRP1 and B100michael-west2014-05-141-0/+5
| | | | - Added catch for unhandled error
* x300: Fixed DMA busy logic after review feedback.Ashish Chaudhari2014-04-282-2/+2
|
* x300: Addressed review feedbackAshish Chaudhari2014-04-251-1/+0
| | | | | - Fixed synchronization for unclaim - Removed stray RIO addr space set