diff options
Diffstat (limited to 'mpm')
-rw-r--r-- | mpm/python/usrp_mpm/periph_manager/base.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mpm/python/usrp_mpm/periph_manager/base.py b/mpm/python/usrp_mpm/periph_manager/base.py index 5e5d3889e..3cfab6c79 100644 --- a/mpm/python/usrp_mpm/periph_manager/base.py +++ b/mpm/python/usrp_mpm/periph_manager/base.py @@ -534,6 +534,7 @@ class PeriphManagerBase(object): """ return self.mboard_regs_control.get_device_id() + @no_claim def get_proto_ver(self): """ Return RFNoC protocol version @@ -542,6 +543,7 @@ class PeriphManagerBase(object): self.log.debug("RFNoC protocol version supported by this device is {}".format(proto_ver)) return proto_ver + @no_claim def get_chdr_width(self): """ Return RFNoC CHDR width @@ -550,7 +552,6 @@ class PeriphManagerBase(object): self.log.debug("CHDR width supported by the device is {}".format(chdr_width)) return chdr_width - ########################################################################### # Misc device status controls and indicators ########################################################################### |