diff options
author | Mark Meserve <mark.meserve@ni.com> | 2019-02-20 15:04:05 -0600 |
---|---|---|
committer | Brent Stapleton <brent.stapleton@ettus.com> | 2019-02-21 16:16:06 -0800 |
commit | 3b872372db27cf5c65fc2e36f7bd2fc45a070141 (patch) | |
tree | 4fb05909c2cc0f754b8a5cb910013ad4c9209617 /host/lib/usrp/dboard/rhodium/rhodium_radio_ctrl_impl.hpp | |
parent | ccddd671bded324b2752e769879e6ae645768a62 (diff) | |
download | uhd-3b872372db27cf5c65fc2e36f7bd2fc45a070141.tar.gz uhd-3b872372db27cf5c65fc2e36f7bd2fc45a070141.tar.bz2 uhd-3b872372db27cf5c65fc2e36f7bd2fc45a070141.zip |
rh: revise correction data usage
- UHD's calibration utilities use the LO frequency, so this is the
frequency we should be using too.
- Disables loaded corrections in lowband, as the utilities will not
generate valid corrections at these frequencies. Manual corrections
can still be added via the property tree.
- Changed corrections logging to include frequency and less certainty
of the correction file's existence.
Diffstat (limited to 'host/lib/usrp/dboard/rhodium/rhodium_radio_ctrl_impl.hpp')
-rw-r--r-- | host/lib/usrp/dboard/rhodium/rhodium_radio_ctrl_impl.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/host/lib/usrp/dboard/rhodium/rhodium_radio_ctrl_impl.hpp b/host/lib/usrp/dboard/rhodium/rhodium_radio_ctrl_impl.hpp index d88326b4f..fad987b98 100644 --- a/host/lib/usrp/dboard/rhodium/rhodium_radio_ctrl_impl.hpp +++ b/host/lib/usrp/dboard/rhodium/rhodium_radio_ctrl_impl.hpp @@ -218,8 +218,8 @@ private: // ATR registers control SW10 and the frontend LEDs. void _update_atr(const std::string& ant, const direction_t dir); - //! Configure DSP core corrections based on current frequency and LO source - void _update_corrections(const std::string lo_source, const double freq, const direction_t dir); + //! Configure DSP core corrections based on current frequency + void _update_corrections(const double freq, const direction_t dir, const bool enable); //! Map a frequency in Hz to an rx_band value. Will return // rx_band::INVALID_BAND if the frequency is out of range. |