diff options
author | Martin Braun <martin.braun@ettus.com> | 2018-10-12 16:39:36 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2018-10-12 16:39:36 -0700 |
commit | b0bf984a9942ea7e41d67420904fa12a2f16bd2b (patch) | |
tree | 9e68259298895cca429eda40ebc7ea619187f822 /mpm | |
parent | 22ec3e4bd6a489d1809760e3fedcd6892798c0e0 (diff) | |
download | uhd-b0bf984a9942ea7e41d67420904fa12a2f16bd2b.tar.gz uhd-b0bf984a9942ea7e41d67420904fa12a2f16bd2b.tar.bz2 uhd-b0bf984a9942ea7e41d67420904fa12a2f16bd2b.zip |
mpm: n3xx: Fix Pylint warnings
This commit contains whitespace and formatting changes only. No
functional changes.
Diffstat (limited to 'mpm')
-rw-r--r-- | mpm/python/usrp_mpm/periph_manager/n3xx.py | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/mpm/python/usrp_mpm/periph_manager/n3xx.py b/mpm/python/usrp_mpm/periph_manager/n3xx.py index ccdf29815..245f739f5 100644 --- a/mpm/python/usrp_mpm/periph_manager/n3xx.py +++ b/mpm/python/usrp_mpm/periph_manager/n3xx.py @@ -238,12 +238,12 @@ class n3xx(ZynqComponents, PeriphManagerBase): self._clock_source = N3XX_DEFAULT_CLOCK_SOURCE self._time_source = N3XX_DEFAULT_TIME_SOURCE else: - self.set_sync_source( { + self.set_sync_source({ 'clock_source': default_args.get('clock_source', N3XX_DEFAULT_CLOCK_SOURCE), 'time_source' : default_args.get('time_source', N3XX_DEFAULT_TIME_SOURCE) - } ) + }) def _init_meas_clock(self): """ @@ -544,12 +544,12 @@ class n3xx(ZynqComponents, PeriphManagerBase): Selects reference clock and PPS sources. Unconditionally re-applies the time source to ensure continuity between the reference clock and time rates. """ - clock_source = args.get('clock_source',self._clock_source) + clock_source = args.get('clock_source', self._clock_source) if clock_source != self._clock_source: assert clock_source in self.get_clock_sources() self.log.debug("Setting clock source to `{}'".format(clock_source)) - # Place the DB clocks in a safe state to allow reference clock transitions. This - # leaves all the DB clocks OFF. + # Place the DB clocks in a safe state to allow reference clock + # transitions. This leaves all the DB clocks OFF. for slot, dboard in enumerate(self.dboards): if hasattr(dboard, 'set_clk_safe_state'): self.log.trace( @@ -576,18 +576,18 @@ class n3xx(ZynqComponents, PeriphManagerBase): .format(self._clock_source)) self.log.debug("Reference clock frequency is: {} MHz" \ .format(self.get_ref_clock_freq()/1e6)) - # Enable the Ref Clock in the FPGA after giving it a chance to settle. The - # settling time is a guess. + # Enable the Ref Clock in the FPGA after giving it a chance to + # settle. The settling time is a guess. time.sleep(0.100) self.mboard_regs_control.enable_ref_clk(True) else: - self.log.trace("New reference clock source " \ - "assignment matches previous assignment. Ignoring " \ + self.log.trace("New reference clock source " + "assignment matches previous assignment. Ignoring " "update command.") # Whenever the clock source changes, re-apply the time source to ensure # frequency changes are applied to the internal PPS counters. # If the time_source is not passed as an arg, use the current source. - time_source = args.get('time_source',self._time_source) + time_source = args.get('time_source', self._time_source) assert time_source in self.get_time_sources() # Perform the assignment regardless of whether the source was previously # selected, since the internal PPS generator needs to change depending on the @@ -632,7 +632,8 @@ class n3xx(ZynqComponents, PeriphManagerBase): "Updating reference clock on dboard %d to %f MHz...", slot, ref_clk_freq/1e6 ) - dboard.update_ref_clock_freq(ref_clk_freq, + dboard.update_ref_clock_freq( + ref_clk_freq, time_source=time_source, clock_source=clock_source) |