diff options
Diffstat (limited to 'mpm')
-rw-r--r-- | mpm/python/usrp_mpm/periph_manager/n3xx.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/mpm/python/usrp_mpm/periph_manager/n3xx.py b/mpm/python/usrp_mpm/periph_manager/n3xx.py index 57fc4b7c6..53f03aefc 100644 --- a/mpm/python/usrp_mpm/periph_manager/n3xx.py +++ b/mpm/python/usrp_mpm/periph_manager/n3xx.py @@ -408,8 +408,12 @@ class n3xx(ZynqComponents, PeriphManagerBase): self.enable_pps_out(False) # if there's no clock_source or time_source params, we added here since # dboards init procedures need them. - args['clock_source'] = args.get('clock_source', N3XX_DEFAULT_CLOCK_SOURCE) - args['time_source'] = args.get('time_source', N3XX_DEFAULT_TIME_SOURCE) + # At this point, both the self._clock_source and self._time_source global + # properties should have been set to either the default values (first time + # init() is run); or to the previous configured values (updated after a + # successful clocking configuration). + args['clock_source'] = args.get('clock_source', self._clock_source) + args['time_source'] = args.get('time_source', self._time_source) self.set_sync_source(args) # Uh oh, some hard coded product-related info: The N300 has no LO # source connectors on the front panel, so we assume that if this was |