aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Braun <martin.braun@ettus.com>2015-09-03 16:04:37 -0700
committerMartin Braun <martin.braun@ettus.com>2015-09-03 16:04:37 -0700
commit01ed9b37c8fb5de959cc9f5dcb56ffd66fc7c6d3 (patch)
treeeca126b117fc32ae733c72b3cd81957382b8ed6d
parent874a64bb8e3e6a6e7cce6a4f16c4ee3c8c1a271d (diff)
downloaduhd-01ed9b37c8fb5de959cc9f5dcb56ffd66fc7c6d3.tar.gz
uhd-01ed9b37c8fb5de959cc9f5dcb56ffd66fc7c6d3.tar.bz2
uhd-01ed9b37c8fb5de959cc9f5dcb56ffd66fc7c6d3.zip
b2xx: Removed DCM reset bit (obsolete)
-rw-r--r--host/lib/usrp/b200/b200_impl.cpp2
-rw-r--r--host/lib/usrp/b200/b200_impl.hpp3
2 files changed, 2 insertions, 3 deletions
diff --git a/host/lib/usrp/b200/b200_impl.cpp b/host/lib/usrp/b200/b200_impl.cpp
index 836693544..ffce08567 100644
--- a/host/lib/usrp/b200/b200_impl.cpp
+++ b/host/lib/usrp/b200/b200_impl.cpp
@@ -1132,7 +1132,7 @@ void b200_impl::update_gpio_state(void)
| (_gpio_state.rx_bandsel_a << 5)
| (_gpio_state.rx_bandsel_b << 4)
| (_gpio_state.rx_bandsel_c << 3)
- | (_gpio_state.codec_arst << 2) // OBSELETE. DCM removed from B2xx
+ // Bit 2 currently not used.
| (_gpio_state.mimo << 1)
| (_gpio_state.ref_sel << 0)
;
diff --git a/host/lib/usrp/b200/b200_impl.hpp b/host/lib/usrp/b200/b200_impl.hpp
index b291f8e5c..04c0b85c4 100644
--- a/host/lib/usrp/b200/b200_impl.hpp
+++ b/host/lib/usrp/b200/b200_impl.hpp
@@ -204,7 +204,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, swap_atr;
+ boost::uint32_t tx_bandsel_a, tx_bandsel_b, rx_bandsel_a, rx_bandsel_b, rx_bandsel_c, mimo, ref_sel, swap_atr;
gpio_state() {
tx_bandsel_a = 0;
@@ -212,7 +212,6 @@ private:
rx_bandsel_a = 0;
rx_bandsel_b = 0;
rx_bandsel_c = 0;
- codec_arst = 0;
mimo = 0;
ref_sel = 0;
swap_atr = 0;