From 75ee8e0314b7149ae4ef57e15b15c6bdfa3ac099 Mon Sep 17 00:00:00 2001 From: Mark Meserve Date: Tue, 25 Sep 2018 17:33:23 -0500 Subject: rh: add functions to toggle lowband lo --- mpm/python/usrp_mpm/dboard_manager/rhodium.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'mpm/python/usrp_mpm/dboard_manager/rhodium.py') diff --git a/mpm/python/usrp_mpm/dboard_manager/rhodium.py b/mpm/python/usrp_mpm/dboard_manager/rhodium.py index 88db243fa..8b4bf373b 100644 --- a/mpm/python/usrp_mpm/dboard_manager/rhodium.py +++ b/mpm/python/usrp_mpm/dboard_manager/rhodium.py @@ -560,6 +560,20 @@ class Rhodium(DboardManagerBase): self.log.info("Re-initializing daughter board. This may take some time.") self._reinit(self.master_clock_rate) self.log.debug("Daughter board re-initialization done.") + + def enable_tx_lowband_lo(self, enable): + """ + Enables or disables the TX lowband LO output from the LMK on the + daughterboard. + """ + self.lmk.enable_tx_lb_lo(enable); + + def enable_rx_lowband_lo(self, enable): + """ + Enables or disables the RX lowband LO output from the LMK on the + daughterboard. + """ + self.lmk.enable_rx_lb_lo(enable); ########################################################################## -- cgit v1.2.3