diff options
Diffstat (limited to 'mpm/python/usrp_mpm/periph_manager/x4xx_rfdc_ctrl.py')
-rw-r--r-- | mpm/python/usrp_mpm/periph_manager/x4xx_rfdc_ctrl.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/mpm/python/usrp_mpm/periph_manager/x4xx_rfdc_ctrl.py b/mpm/python/usrp_mpm/periph_manager/x4xx_rfdc_ctrl.py index be93a495e..6dca79b2a 100644 --- a/mpm/python/usrp_mpm/periph_manager/x4xx_rfdc_ctrl.py +++ b/mpm/python/usrp_mpm/periph_manager/x4xx_rfdc_ctrl.py @@ -88,11 +88,13 @@ class X4xxRfdcCtrl: self._cal_freeze_cache = {} @no_rpc - def unset_cbs(self): + def tear_down(self): """ - Removes any stored references to our owning X4xx class instance + Removes any stored references to our owning X4xx class instance and + destructs anything that must happen at teardown """ self._get_spll_freq = None + del self._rfdc_ctrl ########################################################################### # Public APIs (not available as MPM RPC calls) |