aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/usrp/usrp1/usrp1_iface.hpp
Commit message (Collapse)AuthorAgeFilesLines
* uhd: Apply clang-format against all .cpp and .hpp files in host/Martin Braun2020-03-031-13/+16
| | | | | Note: template_lvbitx.{cpp,hpp} need to be excluded from the list of files that clang-format gets applied against.
* uhd: Replace usage of boost smart pointers with C++11 counterpartsMartin Braun2019-11-261-2/+2
| | | | | | | | | | | | | | | | | | | This removes the following Boost constructs: - boost::shared_ptr, boost::weak_ptr - boost::enable_shared_from_this - boost::static_pointer_cast, boost::dynamic_pointer_cast The appropriate includes were also removed. All C++11 versions of these require #include <memory>. Note that the stdlib and Boost versions have the exact same syntax, they only differ in the namespace (boost vs. std). The modifications were all done using sed, with the exception of boost::scoped_ptr, which was replaced by std::unique_ptr. References to boost::smart_ptr were also removed. boost::intrusive_ptr is not removed in this commit, since it does not have a 1:1 mapping to a C++11 construct.
* uhd: Replace all usage of boost::noncopyable with uhd::noncopyableMartin Braun2019-02-151-2/+2
| | | | | | This fixes the build errors that occur due to switching locations of noncopyable.hpp within Boost, and also allows us to remove boost::noncopyable in one fell swoop.
* uhd: Move internal headers to uhdlib/Martin Braun2018-03-141-1/+1
| | | | | | | | | | | | | | | | To avoid the proliferation of additional include directories and multiple ways of including project-local headers, we now default to moving all headers that are used across UHD into the uhdlib/ subdirectory. Some #include statements were also reordered as they were modified for closer compliance with the coding guidelines. Internal cpp source files should now include files like this: #include <uhdlib/rfnoc/ctrl_iface.hpp> Reviewed-by: Ashish Chaudhari <ashish.chaudhari@ettus.com>
* uhd: Update license headersMartin Braun2018-02-191-1/+2
| | | | | | | All copyright is now attributed to "Ettus Research, a National Instruments company". SPDX headers were also updated to latest version 3.0.
* Move all license headers to SPDX format.Martin Braun2017-12-221-12/+1
|
* uhd: wb_iface is now a public interfaceJosh Blum2013-10-041-3/+4
|
* lib/cmake: CPack source workNicholas Corgan2012-11-161-0/+13
| | | | | * Removed all host code dependencies on firmware headers * Put in CMake settings for CPack source
* usrp: moved fx2 stuff into common folderJosh Blum2011-07-011-1/+1
|
* usrp1: implemented properties interface on usrp1Josh Blum2011-07-011-19/+3
|
* usb: fix for fx2_ctrl include issuerelease_003_001_002Josh Blum2011-06-141-1/+1
|
* usrp1: moved fx2 control into its own directoryJosh Blum2011-06-141-2/+2
|
* uhd: update copyright headers with automated scriptJosh Blum2011-03-231-1/+1
|
* uhd: removed mb_eeprom from mboard iface (already exposed in property)Josh Blum2011-03-031-0/+3
| | | | also fixed some warnings with unused parameters
* Generalized the mboard_iface into mboard_iface.hpp and made each of the USRP ↵Nick Foster2011-03-011-34/+2
| | | | devices inherit from it.
* usrp: implement name checking on dicovery (all platforms), separate usb ↵Josh Blum2010-11-051-0/+3
| | | | serial from serial (for now)
* usrp1: replace byteswap with htonx (it was wrong to just swap)Josh Blum2010-09-301-14/+0
| | | | also removed unused poke and peek 16 bit calls
* usrp1: Add usrp1 implementationThomas Tsou2010-08-131-0/+100