diff options
author | Josh Blum <josh@joshknows.com> | 2010-04-14 11:47:55 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2010-04-14 11:47:55 -0700 |
commit | 36d81c56583f37e5304db885cc82637e30bff8f5 (patch) | |
tree | 0356bce652977266d75bbbafa3c74b85a263b3c2 /host/lib | |
parent | e2a9419385bee4d08862553ddd0a637964557272 (diff) | |
download | uhd-36d81c56583f37e5304db885cc82637e30bff8f5.tar.gz uhd-36d81c56583f37e5304db885cc82637e30bff8f5.tar.bz2 uhd-36d81c56583f37e5304db885cc82637e30bff8f5.zip |
renamed dxc to dsp for tune result
Diffstat (limited to 'host/lib')
-rw-r--r-- | host/lib/types.cpp | 4 | ||||
-rw-r--r-- | host/lib/usrp/tune_helper.cpp | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/host/lib/types.cpp b/host/lib/types.cpp index cd688e73d..0fd2522cf 100644 --- a/host/lib/types.cpp +++ b/host/lib/types.cpp @@ -55,8 +55,8 @@ freq_range_t::freq_range_t(double min_, double max_){ tune_result_t::tune_result_t(void){ target_inter_freq = 0.0; actual_inter_freq = 0.0; - target_dxc_freq = 0.0; - actual_dxc_freq = 0.0; + target_dsp_freq = 0.0; + actual_dsp_freq = 0.0; spectrum_inverted = false; } diff --git a/host/lib/usrp/tune_helper.cpp b/host/lib/usrp/tune_helper.cpp index 2fb15064c..a7d695b4e 100644 --- a/host/lib/usrp/tune_helper.cpp +++ b/host/lib/usrp/tune_helper.cpp @@ -74,8 +74,8 @@ static tune_result_t tune_xx_subdev_and_dxc( tune_result_t tune_result; tune_result.target_inter_freq = target_inter_freq; tune_result.actual_inter_freq = actual_inter_freq; - tune_result.target_dxc_freq = target_dxc_freq; - tune_result.actual_dxc_freq = actual_dxc_freq; + tune_result.target_dsp_freq = target_dxc_freq; + tune_result.actual_dsp_freq = actual_dxc_freq; tune_result.spectrum_inverted = inverted; return tune_result; } |