From 24b0e8c7fa3824834d3fb4b536539bd6e500ef50 Mon Sep 17 00:00:00 2001 From: Kurtis Heimerl Date: Sat, 26 Nov 2011 03:18:16 +0000 Subject: [PATCH] uhd: remove external clock polarity setting Unused and causes the follwing errors on certain UHD versions. "ValueError: unhandled clock configuration reference source: _external_" Signed-off-by: Thomas Tsou git-svn-id: http://wush.net/svn/range/software/public/openbts/trunk@2664 19bc5d8c-e614-43d4-8b26-e1612bc8e597 --- Transceiver52M/UHDDevice.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/Transceiver52M/UHDDevice.cpp b/Transceiver52M/UHDDevice.cpp index f319ba6..ef5b2fc 100644 --- a/Transceiver52M/UHDDevice.cpp +++ b/Transceiver52M/UHDDevice.cpp @@ -278,7 +278,6 @@ void uhd_device::set_ref_clk(bool ext_clk) uhd::clock_config_t clk_cfg; clk_cfg.pps_source = uhd::clock_config_t::PPS_SMA; - clk_cfg.pps_polarity = uhd::clock_config_t::PPS_NEG; if (ext_clk) clk_cfg.ref_source = uhd::clock_config_t::REF_SMA;