diff options
Diffstat (limited to 'mpm/python/usrp_mpm/dboard_manager/base.py')
-rw-r--r-- | mpm/python/usrp_mpm/dboard_manager/base.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/mpm/python/usrp_mpm/dboard_manager/base.py b/mpm/python/usrp_mpm/dboard_manager/base.py index 52d2f22a3..13284f6d3 100644 --- a/mpm/python/usrp_mpm/dboard_manager/base.py +++ b/mpm/python/usrp_mpm/dboard_manager/base.py @@ -34,3 +34,9 @@ class DboardManagerBase(object): def get_serial(self): return self._eeprom.get("serial", "") + + def update_ref_clock_freq(self, freq): + """ + Call this function if the frequency of the reference clock changes. + """ + self.log.warning("update_ref_clock_freq() called but not implemented") |