aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'maint'Nicholas Corgan2014-03-273-14/+8
|\
| * nirio: improved dealing with unsupported OS'sNicholas Corgan2014-03-273-14/+8
| | | | | | | | | | * Instead of specifically checking for Apple, default to unsupported iface file if unsupported OS is detected * Don't error out if we can't catch a specific unsupported OS, just use barebones "unsupported" structs
* | b200: update FPGA loading percentage every 1% instead of 10%Nicholas Corgan2014-03-271-1/+1
|/
* BUG #396: X3x0: Packet loss within burst while running full duplex overnightmichael-west2014-03-261-13/+9
| | | | - Disabled all packet forwarding
* Pulling in patch from Marcus Leech for includes and older OSes.Ben Hilburn2014-03-262-0/+9
|
* Merge fix for missing include, breaking builds in older OSes.Ben Hilburn2014-03-252-1/+1
|\
| * b200: Added missing include to b200_implMoritz Fischer2014-03-231-0/+1
| | | | | | | | | | | | | | | | * In order to use std::ceil and std::floor, on older compilers we need to still add an include for cmath. Tested-by: Marcus D. Leech <mleech@ripnet.com> Signed-off-by: Moritz Fischer <moritz@ettus.com>
| * gps: Removed superfluous include.Moritz Fischer2014-03-231-1/+0
| | | | | | | | | | | | | | * This file doesn't need boost::container::vector. Tested-by: Marcus D. Leech <mleech@ripnet.com> Signed-off-by: Moritz Fischer <moritz@ettus.com>
* | cmake: updated images downloader URL and MD5sumNicholas Corgan2014-03-241-2/+2
|/
* cmake: don't set CPACK_SET_DESTDIR with NSISNicholas Corgan2014-03-211-1/+3
|
* x300 fpga: updating FPGA code with latest bug fixesBen Hilburn2014-03-206-3411/+3432
|
* Merge branch 'maint'Nicholas Corgan2014-03-191-1/+2
|\
| * cmake: added CPACK_SET_DESTDIR variable for consistent CMAKE_INSTALL_PREFIX ↵Nicholas Corgan2014-03-171-1/+2
| | | | | | | | usage in packaging
* | BUG #396: Mid-Burst Sequence Errorsmichael-west2014-03-192-8/+10
| | | | | | | | | | | | | | - Restored link state handling. - Enabled forwarding of packets not addressed to this device's MAC address. - Kept forwarding of broadcast packets disabled. NOTE: This is a workaround and not a permanent fix.
* | More reference clock lock detection clean upmichael-west2014-03-181-10/+28
| | | | | | | | | | - Removed check for lock when clock source is changed (including runtime error on failure to lock). - Added separate checks and warning messages for failures to lock the clock during intialization.
* | Modified reference clock lock check to only be performed on Rev E or later.michael-west2014-03-172-10/+18
| |
* | uhd: Addressed Balints and Bens comments for subdev addressingMartin Braun2014-03-173-17/+23
| |
* | Merge branch 'maint'Nicholas Corgan2014-03-1743-112988/+0
|\|
| * Merge branch 'maint' into fpga/removed_planaheadNicholas Corgan2014-03-174-31/+53
| |\
| * | fpga: removed superfluous B2x0 filesNicholas Corgan2014-02-2043-112988/+0
| | |
* | | Merge branch 'maint'Nicholas Corgan2014-03-171-1/+9
|\ \ \ | | |/ | |/|
| * | Merge branch 'maint' into usb/serial_fixNicholas Corgan2014-03-173-30/+44
| |\ \
| * | | usb: better processing of strings from libusbNicholas Corgan2014-02-141-1/+9
| | |/ | |/| | | | | | | | | | * When overwriting a string field with a shorter string, libusb doesn't erase extra characters * Extra processing of this string (already done by load_eeprom) removes extraneous characters
* | | uhd: Fixed WSA bugs (superfluous %s, getsockopt parameters)Patrick Sisterhen2014-03-161-5/+7
| | |
* | | uhd: prelim fix for windows-based UDP transportMartin Braun2014-03-162-2/+79
| | |
* | | Merge clock and PPS fixes.Ben Hilburn2014-03-156-53/+130
|\ \ \
| * | | Addressed comments from review.michael-west2014-03-154-40/+53
| | | | | | | | | | | | | | | | | | | | | | | | - Fixed typos. - Renamed reset() to reset_clocks(). - Created wait_for_ref_locked() function.
| * | | - Added wait for reference clock to lock.michael-west2014-02-211-1/+7
| | | | | | | | | | | | | | | | - Modified wait for GPSDO time setting to timeout after 1 second.
| * | | Fixed bug found during testing where internal clock reference was taking ↵Michael West2014-02-203-11/+25
| | | | | | | | | | | | | | | | | | | | | | | | several seconds to lock. Added reset to the clock control and called it whenever the clock reference is changed.
| * | | - Fix for BUG #264: ./test_pps_input --source external passes even with no 1 ↵Michael West2014-02-184-37/+81
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | PPS on external input on X3xx - Fixed behavior of PPS and clock references to be consistent and intuitive. -- Added detection of clock reference and PPS. -- Changed order of precedence to external, gpsdo, internal for default of clock and PPS. -- Throws runtime error if the user requests a reference clock or PPS that is not present. - Bumped FPGA compatibility to 4.
* | | Merging fix for multi-channel recv overflow handling.Ben Hilburn2014-03-141-25/+38
|\ \ \
| * | | Fix for BUG #390: RIO & UHD: multi-channel recv() does not notify there has ↵michael-west2014-03-071-25/+38
| | | | | | | | | | | | | | | | | | | | | | | | | | | | been an overflow - Corrected flush algorithm - Cached metadata for overflow during call to handler
* | | | Merging fix for NULL pointer deref in rpc_client::call()Ben Hilburn2014-03-141-12/+20
|\ \ \ \
| * | | | Added handling for responses that do not have data.michael-west2014-03-131-11/+14
| | | | |
| * | | | Added assertion to make sure we are resizing buffer to a value >0.michael-west2014-03-111-0/+2
| | | | |
| * | | | Fix for Bug #378: rpc_client::call() dereferences NULL pointersmichael-west2014-03-071-3/+6
| |/ / / | | | | | | | | | | | | - Added check for empty data before write
* | | | Merging fixes for subdev specs in B2xx.Ben Hilburn2014-03-143-47/+42
|\ \ \ \
| * | | | b200: Added channel mapping capabilitiesMartin Braun2014-02-253-47/+42
| | |_|/ | |/| |
* | | | Merge Ethernet, MTU, and frame size fixes.Ben Hilburn2014-03-143-17/+17
|\ \ \ \
| * | | | x300 mtu: Removed magic number, minor manual updatesMartin Braun2014-02-183-17/+17
| | |_|/ | |/| |
* | | | Merge branch 'origin/martin/subdev_spec_bug_B'Ben Hilburn2014-03-148-149/+221
|\ \ \ \
| * \ \ \ x300: Merged Michaels segfault fixMartin Braun2014-03-101-11/+12
| |\ \ \ \
| | * | | | - Fixed segmentation fault when using X3x0 with daughterboards in 4x4 ↵michael-west2014-03-061-11/+12
| | | |_|/ | | |/| | | | | | | | | | | | | | | | | | | | | | configuration. - Updated index of dboard_manager dictionary to include mboard.
| * | | | x300: Added comments on mb/chan search codeMartin Braun2014-03-101-0/+4
| | | | |
| * | | | Removed spurious UHD_VAR.Martin Braun2014-03-102-10/+0
| | | | |
| * | | | utils: added subdev selection to cal toolsMartin Braun2014-03-104-18/+66
| | | | |
| * | | | uhd: added channel mapping support to multi_usrpMartin Braun2014-03-101-0/+12
| | | | |
| * | | | x300: added channel mapping capabilitiesMartin Braun2014-03-103-73/+111
| | | | |
| * | | | x300: merged subdev update routines for tx and rxMartin Braun2014-03-103-46/+26
| | | | |
| * | | | x300: remove data that was duplicating property treeMartin Braun2014-03-102-20/+19
| |/ / /