diff options
author | michael-west <michael.west@ettus.com> | 2014-06-06 15:27:02 -0700 |
---|---|---|
committer | michael-west <michael.west@ettus.com> | 2014-06-06 15:27:02 -0700 |
commit | 05559d64b9c061c0da11cacec46f11fe03d852cb (patch) | |
tree | 732f4de13e6c0e8d5f5b8136b3f5a3eaa82f110f /host/lib/usrp/cores | |
parent | 054a752bb25f9e17c1269b28ad2a95865c0d63a2 (diff) | |
download | uhd-05559d64b9c061c0da11cacec46f11fe03d852cb.tar.gz uhd-05559d64b9c061c0da11cacec46f11fe03d852cb.tar.bz2 uhd-05559d64b9c061c0da11cacec46f11fe03d852cb.zip |
Fix for BUG #500: B210: RX channels are not phase aligned
- Adding UHD side code to invert second RX channel
Diffstat (limited to 'host/lib/usrp/cores')
-rw-r--r-- | host/lib/usrp/cores/rx_dsp_core_3000.cpp | 9 | ||||
-rw-r--r-- | host/lib/usrp/cores/rx_dsp_core_3000.hpp | 2 |
2 files changed, 8 insertions, 3 deletions
diff --git a/host/lib/usrp/cores/rx_dsp_core_3000.cpp b/host/lib/usrp/cores/rx_dsp_core_3000.cpp index 02c24b4bb..a39b4a05e 100644 --- a/host/lib/usrp/cores/rx_dsp_core_3000.cpp +++ b/host/lib/usrp/cores/rx_dsp_core_3000.cpp @@ -37,6 +37,8 @@ #define FLAG_DSP_RX_MUX_SWAP_IQ (1 << 0) #define FLAG_DSP_RX_MUX_REAL_MODE (1 << 1) +#define FLAG_DSP_RX_MUX_INVERT_Q (1 << 2) +#define FLAG_DSP_RX_MUX_INVERT_I (1 << 3) template <class T> T ceil_log2(T num){ return std::ceil(std::log(num)/std::log(T(2))); @@ -70,14 +72,17 @@ public: ) } - void set_mux(const std::string &mode, const bool fe_swapped){ + void set_mux(const std::string &mode, const bool fe_swapped, const bool invert_i, const bool invert_q){ static const uhd::dict<std::string, boost::uint32_t> mode_to_mux = boost::assign::map_list_of ("IQ", 0) ("QI", FLAG_DSP_RX_MUX_SWAP_IQ) ("I", FLAG_DSP_RX_MUX_REAL_MODE) ("Q", FLAG_DSP_RX_MUX_SWAP_IQ | FLAG_DSP_RX_MUX_REAL_MODE) ; - _iface->poke32(REG_DSP_RX_MUX, mode_to_mux[mode] ^ (fe_swapped? FLAG_DSP_RX_MUX_SWAP_IQ : 0)); + _iface->poke32(REG_DSP_RX_MUX, mode_to_mux[mode] + ^ (fe_swapped ? FLAG_DSP_RX_MUX_SWAP_IQ : 0) + ^ (invert_i ? FLAG_DSP_RX_MUX_INVERT_I : 0) + ^ (invert_q ? FLAG_DSP_RX_MUX_INVERT_Q : 0)); } void set_tick_rate(const double rate){ diff --git a/host/lib/usrp/cores/rx_dsp_core_3000.hpp b/host/lib/usrp/cores/rx_dsp_core_3000.hpp index f35e1e3d3..8c6a2178d 100644 --- a/host/lib/usrp/cores/rx_dsp_core_3000.hpp +++ b/host/lib/usrp/cores/rx_dsp_core_3000.hpp @@ -37,7 +37,7 @@ public: const bool is_b200 = false //TODO: Obsolete this when we switch to the new DDC on the B200 ); - virtual void set_mux(const std::string &mode, const bool fe_swapped = false) = 0; + virtual void set_mux(const std::string &mode, const bool fe_swapped = false, const bool invert_i = false, const bool invert_q = false) = 0; virtual void set_tick_rate(const double rate) = 0; |