diff options
author | Martin Braun <martin.braun@ettus.com> | 2015-07-09 16:56:34 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2015-07-29 16:50:34 -0700 |
commit | 9813505968e3c9beb1c8f16116cd8665524992b6 (patch) | |
tree | f9b66313c6a138dbabeb7f113e1e6ce802a1a22d /host/lib/usrp/common/ad9361_ctrl.hpp | |
parent | e94223d4b5db34b407a72f9aed56fe3ef4eeec75 (diff) | |
download | uhd-9813505968e3c9beb1c8f16116cd8665524992b6.tar.gz uhd-9813505968e3c9beb1c8f16116cd8665524992b6.tar.bz2 uhd-9813505968e3c9beb1c8f16116cd8665524992b6.zip |
ad9361/b200/e300: Refactored AD936x + perifs management
- Created AD936x manager class
- Moved functionality from B2x0 and E310 into manager
- Separated property tree + perifs initialization in both device classes
Diffstat (limited to 'host/lib/usrp/common/ad9361_ctrl.hpp')
-rw-r--r-- | host/lib/usrp/common/ad9361_ctrl.hpp | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/host/lib/usrp/common/ad9361_ctrl.hpp b/host/lib/usrp/common/ad9361_ctrl.hpp index ac0404b24..044265422 100644 --- a/host/lib/usrp/common/ad9361_ctrl.hpp +++ b/host/lib/usrp/common/ad9361_ctrl.hpp @@ -32,9 +32,21 @@ namespace uhd { namespace usrp { -/*********************************************************************** - * AD9361 Control Interface - **********************************************************************/ +/*! AD936x Control Interface + * + * This is a convenient way to access the AD936x RF IC. + * It basically encodes knowledge of register values etc. into + * accessible API calls. + * + * \section ad936x_which The `which` parameter + * + * Many function calls require a `which` parameter to select + * the RF frontend. Valid values for `which` are: + * - RX1, RX2 + * - TX1, TX2 + * + * Frontend numbering is as designed by the AD9361. + */ class ad9361_ctrl : public boost::noncopyable { public: |