From 0e30a5ca0872762a36be15f030a763c7f67dd003 Mon Sep 17 00:00:00 2001 From: Trung Tran Date: Wed, 17 Oct 2018 15:59:30 -0700 Subject: mg: adding skip_rfic argument This change to add skip_rfic as an device argument. skip_rfic should be only used in ref_clock bist tests to bring down the test time. --- mpm/python/usrp_mpm/dboard_manager/mg_init.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'mpm/python/usrp_mpm/dboard_manager/mg_init.py') diff --git a/mpm/python/usrp_mpm/dboard_manager/mg_init.py b/mpm/python/usrp_mpm/dboard_manager/mg_init.py index 99caf6d46..62cc27a4f 100644 --- a/mpm/python/usrp_mpm/dboard_manager/mg_init.py +++ b/mpm/python/usrp_mpm/dboard_manager/mg_init.py @@ -551,8 +551,9 @@ class MagnesiumInitManager(object): self.log.debug( "Sample Clocks and Phase DAC Configured Successfully!") # Clocks and PPS are now fully active! - self.mykonos.set_master_clock_rate(master_clock_rate) - self.init_jesd(jesdcore, master_clock_rate, args) + if args.get('skip_rfic', None) == None: + self.mykonos.set_master_clock_rate(master_clock_rate) + self.init_jesd(jesdcore, master_clock_rate, args) jesdcore = None # Help with garbage collection # That's all that requires access to the dboard regs! return True -- cgit v1.2.3