diff options
author | Martin Braun <martin.braun@ettus.com> | 2015-04-24 15:15:40 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2015-04-24 15:40:53 -0700 |
commit | d74af0b4d17d66f9bb94638a06a25195f6dc885a (patch) | |
tree | b6f2f3a0b7d4b0dae5d32a85b0fa5ca08ead201e /host/lib/usrp/b200/b200_impl.hpp | |
parent | 9ca0473ac09a2f251382b270059278730135b606 (diff) | |
download | uhd-d74af0b4d17d66f9bb94638a06a25195f6dc885a.tar.gz uhd-d74af0b4d17d66f9bb94638a06a25195f6dc885a.tar.bz2 uhd-d74af0b4d17d66f9bb94638a06a25195f6dc885a.zip |
b200: Fixed FE swapping register
Diffstat (limited to 'host/lib/usrp/b200/b200_impl.hpp')
-rw-r--r-- | host/lib/usrp/b200/b200_impl.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/host/lib/usrp/b200/b200_impl.hpp b/host/lib/usrp/b200/b200_impl.hpp index 318b35947..f3d3d0e98 100644 --- a/host/lib/usrp/b200/b200_impl.hpp +++ b/host/lib/usrp/b200/b200_impl.hpp @@ -177,7 +177,7 @@ private: void handle_overflow(const size_t radio_index); struct gpio_state { - boost::uint32_t tx_bandsel_a, tx_bandsel_b, rx_bandsel_a, rx_bandsel_b, rx_bandsel_c, codec_arst, mimo, ref_sel, atr_sel; + boost::uint32_t tx_bandsel_a, tx_bandsel_b, rx_bandsel_a, rx_bandsel_b, rx_bandsel_c, codec_arst, mimo, ref_sel, swap_atr; gpio_state() { tx_bandsel_a = 0; @@ -188,7 +188,7 @@ private: codec_arst = 0; mimo = 0; ref_sel = 0; - atr_sel = 0; + swap_atr = 0; } } _gpio_state; |