summaryrefslogtreecommitdiffstats
path: root/host/lib/usrp/dboard
diff options
context:
space:
mode:
authorJosh Blum <josh@joshknows.com>2011-10-27 10:22:52 -0700
committerJosh Blum <josh@joshknows.com>2011-10-27 10:22:52 -0700
commit59f407fee8dea30693526a6f305bb78f9bb29585 (patch)
tree9ae798e4aa649b91f014eec3eb1e110c8b7875de /host/lib/usrp/dboard
parent3116368adec9e703a3c461d7406aa9dc27a353f5 (diff)
downloaduhd-59f407fee8dea30693526a6f305bb78f9bb29585.tar.gz
uhd-59f407fee8dea30693526a6f305bb78f9bb29585.tar.bz2
uhd-59f407fee8dea30693526a6f305bb78f9bb29585.zip
basic/lf: keep dboard clocks disabled (should be by default)
Diffstat (limited to 'host/lib/usrp/dboard')
-rw-r--r--host/lib/usrp/dboard/db_basic_and_lf.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/host/lib/usrp/dboard/db_basic_and_lf.cpp b/host/lib/usrp/dboard/db_basic_and_lf.cpp
index 64d4a5bee..86d86dda0 100644
--- a/host/lib/usrp/dboard/db_basic_and_lf.cpp
+++ b/host/lib/usrp/dboard/db_basic_and_lf.cpp
@@ -110,7 +110,7 @@ basic_rx::basic_rx(ctor_args_t args, double max_freq) : rx_dboard_base(args){
this->get_iface()->set_pin_ctrl(dboard_iface::UNIT_RX, 0x0000);
this->get_iface()->set_gpio_ddr(dboard_iface::UNIT_RX, 0xFFFF);
this->get_iface()->set_gpio_out(dboard_iface::UNIT_RX, 0x0000);
- this->get_iface()->set_clock_enabled(dboard_iface::UNIT_RX, true);
+ //this->get_iface()->set_clock_enabled(dboard_iface::UNIT_RX, true);
}
basic_rx::~basic_rx(void){
@@ -220,7 +220,7 @@ void basic_rx::rx_set(const wax::obj &key_, const wax::obj &val){
**********************************************************************/
basic_tx::basic_tx(ctor_args_t args, double max_freq) : tx_dboard_base(args){
_max_freq = max_freq;
- this->get_iface()->set_clock_enabled(dboard_iface::UNIT_TX, true);
+ //this->get_iface()->set_clock_enabled(dboard_iface::UNIT_TX, true);
}
basic_tx::~basic_tx(void){