aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/usrp/usrp2/clock_ctrl.hpp
Commit message (Collapse)AuthorAgeFilesLines
* uhd: Apply clang-format against all .cpp and .hpp files in host/Martin Braun2020-03-031-4/+4
| | | | | 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: 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
|
* Added missing pure virtual destructors to base classesNicholas Corgan2014-09-011-1/+3
|
* fifo ctrl: spi core work and host implementationJosh Blum2012-03-231-3/+4
|
* usrp2: configured clock delay over mimo cableJosh Blum2010-12-111-2/+2
|
* packet_router: added set_mimo_clock_delay to clock_ctrl.Nick Foster2010-12-111-0/+8
| | | | Delay range is fixed right now to [0.444, 9.744]ns in 300ps increments
* usrp-n: configure clocking over the serdes cableJosh Blum2010-12-111-1/+3
| | | | | | | | added status to register to readback master/slave mode removed mimo enum from clock config, its not relevant added serdes clock config to the update clock config method
* USRP2P: internal reference selected by default.Nick Foster2010-10-051-0/+6
|
* added set clock rate, and get clock rates to dboard iface, usrp2 needs clock ↵Josh Blum2010-06-171-0/+27
| | | | ctrl implementation...
* move get clock rate into clock controlJosh Blum2010-06-041-0/+6
|
* Prepend usrp2 onto the helper classes in usrp2 impl to avoid symbol conflicts.Josh Blum2010-06-041-2/+2
|
* Added a place for serdes control on the host.Josh Blum2010-05-101-3/+3
| | | | | Fix bug in codec control. Comment out some clock control in fw code.
* Moved adc and dac control into codec control source file.Josh Blum2010-05-101-0/+60
The codec control powers down the chips on destruction.