summaryrefslogtreecommitdiffstats
path: root/host/lib
diff options
context:
space:
mode:
authorJosh Blum <josh@joshknows.com>2011-03-05 17:19:29 +0000
committerJosh Blum <josh@joshknows.com>2011-03-05 17:19:29 +0000
commit843886694f847bb4ddfb838ca6e43094b51edec0 (patch)
tree27f80ea17e3d55f1ab4ea36f5b2f697e9afbdea0 /host/lib
parentfc6280dffd7f188d9d2718236a959eedc30c8a36 (diff)
downloaduhd-843886694f847bb4ddfb838ca6e43094b51edec0.tar.gz
uhd-843886694f847bb4ddfb838ca6e43094b51edec0.tar.bz2
uhd-843886694f847bb4ddfb838ca6e43094b51edec0.zip
usrp-e100: disabling VCO cal check, its not right, and the warning alarms people
Diffstat (limited to 'host/lib')
-rw-r--r--host/lib/usrp/usrp_e100/clock_ctrl.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/host/lib/usrp/usrp_e100/clock_ctrl.cpp b/host/lib/usrp/usrp_e100/clock_ctrl.cpp
index aba630d88..ef6179119 100644
--- a/host/lib/usrp/usrp_e100/clock_ctrl.cpp
+++ b/host/lib/usrp/usrp_e100/clock_ctrl.cpp
@@ -425,6 +425,8 @@ private:
this->send_reg(0x18);
this->latch_regs();
//wait for calibration done:
+ boost::this_thread::sleep(boost::posix_time::milliseconds(50));
+ /* this routine seems to not work, just sleep and return...
static const boost::uint8_t addr = 0x01F;
for (size_t ms10 = 0; ms10 < 100; ms10++){
boost::uint32_t reg = _iface->read_spi(
@@ -436,6 +438,7 @@ private:
boost::this_thread::sleep(boost::posix_time::milliseconds(10));
}
std::cerr << "USRP-E100 clock control: VCO calibration timeout" << std::endl;
+ */
}
void send_all_regs(void){