aboutsummaryrefslogtreecommitdiffstats
path: root/host/include
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'maint'Martin Braun2015-01-202-2/+2
|\ | | | | | | | | Conflicts: host/include/uhd/types/direction.hpp
| * uhd: Added direction typeMartin Braun2015-01-202-1/+36
| |
* | Merge branch 'maint'Martin Braun2015-01-192-0/+33
|\| | | | | | | | | Conflicts: host/include/uhd/types/CMakeLists.txt
| * uhd: Added endianness typeMartin Braun2015-01-192-0/+33
| |
* | Merge branch 'maint'Martin Braun2015-01-142-2/+18
|\|
| * docs: Amended docs for conversion routinesMartin Braun2015-01-142-2/+18
| |
* | Merge branch 'maint'Martin Braun2015-01-134-2/+42
|\|
| * cmake: Added a version macro for compile-time version checksMartin Braun2015-01-132-1/+13
| |
| * cmake: Added config.h back to the gameMartin Braun2015-01-132-1/+29
| |
* | Added support for MinGW cross-compileNicholas Corgan2015-01-132-3/+10
| | | | | | | | | | | | * Added CMake toolchain file, compatible with different versions * No dependency on MinGW runtime, all statically linked * Misc coding tweaks to allow MinGW to compile
* | math: fixed MSVC error regarding ambiguous std::log callNicholas Corgan2015-01-071-1/+1
| |
* | Merge branch 'maint'Martin Braun2015-01-071-4/+62
|\| | | | | | | | | Conflicts: host/docs/usrp_e3x0.dox
| * docs: Major revisions and additionsMartin Braun2015-01-071-4/+62
| |
* | Adding support for NI VID + PIDs for USRP B2xx devices.Ben Hilburn2014-12-181-0/+3
| |
* | uhd: Renamed direction_t names to avoid namespace clashesMartin Braun2014-12-151-1/+8
| |
* | uhd: Added direction_t for RX & TXMartin Braun2014-12-122-0/+28
| |
* | transport: Made CHDR-related routines separate from VRTMartin Braun2014-12-033-3/+188
| | | | | | | | | | | | 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.
* | docs: Fixed sid_t doxygenMartin Braun2014-11-241-2/+2
| |
* | docs: Added notes on auto_tick_rate (B200)Martin Braun2014-11-211-0/+5
| |
* | uhd: replaced the `images_error` with a generic utility errorBen Hilburn2014-11-213-54/+25
| | | | | | | | | | | | - Deleted images.*, moved functionality to paths.* - Applies for all devices that check FPGA or FW compat numbers - Adds generic utility search tool
* | math: Added a portable log2()Martin Braun2014-11-201-1/+11
| |
* | uhd: Added sid_tMartin Braun2014-10-282-0/+239
|/ | | | | | | This is a data type to represent SIDs (stream IDs). It includes setters and getters for all components of the SID, converters to and from string and uint32 as well as C++ streams.
* nirio: Removed modern boost synchronization types to support older versionsAshish Chaudhari2014-10-161-4/+4
| | | | | - Replaced shared_lock_guard with shared_lock - Replaced lock_guard with upgrade_lock and upgrade_to_unique_lock
* Changed version strings for 3.8.0Martin Braun2014-10-131-1/+1
|
* x300,nirio: Added support for NI-RIO 14.0Ashish Chaudhari2014-10-108-594/+1184
| | | | | | | | | - 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
* uhd: Removed deprecated functions from multi_usrpMartin Braun2014-10-091-28/+0
|
* uhd: Improved tuning code and corresponding outputs/warningsBen Hilburn2014-10-072-2/+46
| | | | | * Added convenience function for frequency comparisons * ABI change required
* math: Added a new uhd::math namespace + float comparison routinesBen Hilburn2014-10-075-4/+604
| | | | | * Float comparison is applied to tuning logic in DSP cores. * Properly using INT_MAX/MIN constants, defined in utils/math.hpp
* Rectifying a great embarassement in UHD. %s/Mhz/MHz.Ben Hilburn2014-10-071-2/+2
|
* Merge branch 'maint'Martin Braun2014-09-241-4/+25
|\
| * uhd: Fixed logging bug (#476) -- UHD logging has unexplained effect on ↵michael-west2014-09-241-4/+25
| | | | | | | | | | | | | | packet loss. - Removed logging from radio_ctrl_core_3000 - Changed logging facility to prevent type conversion when message is not logged
* | Merge branch 'maint'Martin Braun2014-09-231-0/+1
|\|
| * uhd: Added an operator/ for (fs_path, size_t)Martin Braun2014-09-231-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | This is useful when constructing property tree paths. With this path, the following code would be valid: size_t mb_index = 0; fs_path mb_root = "/mboards"; mb_root = mb_root / mb_index; This is a shortcut for the (in UHD very common) mb_root = mb_root / boost::lexical_cast<std::string(mb_index);
* | Updated ABI version stringMartin Braun2014-09-021-1/+1
| |
* | Added missing pure virtual destructors to base classesNicholas Corgan2014-09-0112-10/+42
| |
* | OctoClock firmware upgrade, added host driverNicholas Corgan2014-07-235-12/+215
|/ | | | | | | | | | * OctoClock can communicate with UHD over Ethernet * Can read NMEA strings from GPSDO and send to host * Added multi_usrp_clock class for clock devices * uhd::device can now filter to return only USRP devices or clock devices * New OctoClock bootloader can accept firmware download over Ethernet * Added octoclock_burn_eeprom,octoclock_firmware_burner utilities * Added test_clock_synch example to show clock API
* property_tree: doc: Fixed typo in doxygen string.Moritz Fischer2014-05-271-1/+1
| | | | Signed-off-by: Moritz Fischer <moritz@ettus.com>
* Lots of bit-specific type work to fix compilation on older OSes.Ben Hilburn2014-05-216-0/+6
|
* msg_task: return std::vector<boost::uint8_t> instead of std::vector<uint8_t>Nicholas Corgan2014-05-071-2/+2
|
* x300: Added hardware flush mechanism to PCIe logic.Ashish Chaudhari2014-04-242-35/+38
| | | | | - Added DMA enabled states to DMA logic to allow for hardware data flushing during init. - niusrprio_session will now check for FPGA busy before downloading
* UHD: Bumping the ABI compatibility number for UHD-3.7.1.release_003_007_001Ben Hilburn2014-04-211-1/+1
|
* Merge branch 'origin/b200/issue_418'Ben Hilburn2014-04-102-0/+44
|\ | | | | | | Fixing unsafe sscanf call.
| * uhd: Added a cast routine from hex string -> anythingMartin Braun2014-04-102-0/+44
| |
* | Merge branch 'origin/uhd/issue_294_errcode'Ben Hilburn2014-04-101-1/+15
|\ \ | | | | | | | | | Convert numeric errors to PP strings that are actually useful.
| * | uhd: Added pp routines for error codes and rx metadataMartin Braun2014-04-101-1/+15
| |/
* | Merge branch 'martin/warn_sampling_rate'Ben Hilburn2014-04-101-6/+2
|\ \ | | | | | | | | | Warn users if they request a sample rate greater than the interface bandwidth.
| * | uhd: multi_usrp now understands link rate info and can check for itMartin Braun2014-04-101-6/+2
| |/
* | review#64288: Addressed Patrick's feedbackAshish Chaudhari2014-04-101-61/+78
| |
* | nirio: Removed RX zero-copy workaround for NI-RIO 13.0Ashish Chaudhari2014-04-101-2/+2
| |
* | nirio: Enhancement: Added state to nirio_fifo to avoid unnecessary kernel ↵Ashish Chaudhari2014-04-102-35/+64
| | | | | | | | calls for redundant transitions.