diff options
author | Nick Foster <nick@nerdnetworks.org> | 2010-08-31 16:45:49 -0700 |
---|---|---|
committer | Nick Foster <nick@nerdnetworks.org> | 2010-08-31 16:45:49 -0700 |
commit | 0616872e35ac6429c19c2495bf4e378551bdd60e (patch) | |
tree | 6116f992f4f6d1f8d701aca6bf1526a85d8bda89 /host/lib/usrp/dboard/db_dbsrx.cpp | |
parent | b96088b692a5c44974919ee36e253b6ea8c51972 (diff) | |
parent | 9a3217cbbeb39d677a439fe0982a7ac4d7f251c2 (diff) | |
download | uhd-0616872e35ac6429c19c2495bf4e378551bdd60e.tar.gz uhd-0616872e35ac6429c19c2495bf4e378551bdd60e.tar.bz2 uhd-0616872e35ac6429c19c2495bf4e378551bdd60e.zip |
Merge branch 'usrp1' of ettus.sourcerepo.com:ettus/uhdpriv into usrp1
Diffstat (limited to 'host/lib/usrp/dboard/db_dbsrx.cpp')
-rw-r--r-- | host/lib/usrp/dboard/db_dbsrx.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/host/lib/usrp/dboard/db_dbsrx.cpp b/host/lib/usrp/dboard/db_dbsrx.cpp index 06cf91d3b..81434f054 100644 --- a/host/lib/usrp/dboard/db_dbsrx.cpp +++ b/host/lib/usrp/dboard/db_dbsrx.cpp @@ -205,7 +205,12 @@ dbsrx::dbsrx(ctor_args_t args) : rx_dboard_base(args){ //set the gpio directions and atr controls (identically) this->get_iface()->set_pin_ctrl(dboard_iface::UNIT_RX, 0x0); // All unused in atr - this->get_iface()->set_gpio_ddr(dboard_iface::UNIT_RX, 0x0); // All Inputs + if (this->get_iface()->get_special_props().soft_clock_divider){ + this->get_iface()->set_gpio_ddr(dboard_iface::UNIT_RX, 0x1); // GPIO0 is clock + } + else{ + this->get_iface()->set_gpio_ddr(dboard_iface::UNIT_RX, 0x0); // All Inputs + } //send initial register settings this->send_reg(0x0, 0x5); |