From 5160c3778e92ee9324fe4e1f81edb86383608d14 Mon Sep 17 00:00:00 2001 From: Martin Braun Date: Fri, 7 Jan 2022 14:30:13 +0100 Subject: rfnoc: ddc/duc: Improve variable name for _set_freq() As Github user johnwstanford points out, the DUC calls the argument 'input_rate', which is wrong (and was copy/pasted from the DDC code). By calling it dds_rate in both cases, we avoid such confusion. This commit only renames a variable. No changes whatsoever. --- host/lib/rfnoc/ddc_block_control.cpp | 4 ++-- host/lib/rfnoc/duc_block_control.cpp | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'host') diff --git a/host/lib/rfnoc/ddc_block_control.cpp b/host/lib/rfnoc/ddc_block_control.cpp index dbcb1b763..df606f11b 100644 --- a/host/lib/rfnoc/ddc_block_control.cpp +++ b/host/lib/rfnoc/ddc_block_control.cpp @@ -539,12 +539,12 @@ private: //! Set the DDS frequency shift the signal to \p requested_freq double _set_freq( - const double requested_freq, const double input_rate, const size_t chan) + const double requested_freq, const double dds_rate, const size_t chan) { double actual_freq; int32_t freq_word; std::tie(actual_freq, freq_word) = - get_freq_and_freq_word(requested_freq, input_rate); + get_freq_and_freq_word(requested_freq, dds_rate); _ddc_reg_iface.poke32( SR_FREQ_ADDR, uint32_t(freq_word), chan, get_command_time(chan)); return actual_freq; diff --git a/host/lib/rfnoc/duc_block_control.cpp b/host/lib/rfnoc/duc_block_control.cpp index 674e9d309..ac9629ec4 100644 --- a/host/lib/rfnoc/duc_block_control.cpp +++ b/host/lib/rfnoc/duc_block_control.cpp @@ -523,12 +523,12 @@ private: //! Set the DDS frequency shift the signal to \p requested_freq double _set_freq( - const double requested_freq, const double input_rate, const size_t chan) + const double requested_freq, const double dds_rate, const size_t chan) { double actual_freq; int32_t freq_word; std::tie(actual_freq, freq_word) = - get_freq_and_freq_word(requested_freq, input_rate); + get_freq_and_freq_word(requested_freq, dds_rate); _duc_reg_iface.poke32( SR_FREQ_ADDR, uint32_t(freq_word), chan, get_command_time(chan)); return actual_freq; -- cgit v1.2.3