diff options
author | Derek Kozel <derek.kozel@ettus.com> | 2016-08-05 19:00:20 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2016-08-09 10:21:41 -0700 |
commit | 560e664199c478c8d71861b386ef65c5580e614c (patch) | |
tree | 864bd72e362d27cefb1faf83a4feae59eae44342 /host/include | |
parent | 1137dc4726160edf37a29d15b3e99d37ba941be6 (diff) | |
download | uhd-560e664199c478c8d71861b386ef65c5580e614c.tar.gz uhd-560e664199c478c8d71861b386ef65c5580e614c.tar.bz2 uhd-560e664199c478c8d71861b386ef65c5580e614c.zip |
Improve LO APIs for daughterboards without configurable LOs
Diffstat (limited to 'host/include')
-rw-r--r-- | host/include/uhd/usrp/multi_usrp.hpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/host/include/uhd/usrp/multi_usrp.hpp b/host/include/uhd/usrp/multi_usrp.hpp index ab757be8a..d09b5bb15 100644 --- a/host/include/uhd/usrp/multi_usrp.hpp +++ b/host/include/uhd/usrp/multi_usrp.hpp @@ -510,6 +510,8 @@ public: /*! * Get the currently set LO source. + * Channels without controllable LO sources will return + * "internal" * \param name the name of the LO stage to query * \param chan the channel index 0 to N-1 * \return the configured LO source @@ -518,6 +520,8 @@ public: /*! * Get a list of possible LO sources. + * Channels which do not have controllable LO sources + * will return "internal". * \param name the name of the LO stage to query * \param chan the channel index 0 to N-1 * \return a vector of strings for possible settings @@ -552,6 +556,8 @@ public: /*! * Get the current RX LO frequency (Advanced). + * If the channel does not have independently configurable LOs + * the current rf frequency will be returned. * \param name the name of the LO stage to query * \param chan the channel index 0 to N-1 * \return the configured LO frequency @@ -560,6 +566,8 @@ public: /*! * Get the LO frequency range of the RX LO. + * If the channel does not have independently configurable LOs + * the rf frequency range will be returned. * \param name the name of the LO stage to query * \param chan the channel index 0 to N-1 * \return a frequency range object |