diff options
author | Martin Braun <martin.braun@ettus.com> | 2018-01-23 12:06:35 -0800 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2018-01-23 15:21:28 -0800 |
commit | 4c81ed0a5dd01e65db560b9ed0db14407d14ce3e (patch) | |
tree | 29618b8a2e8f0275ff81520602cbd733dcfb6795 /mpm/python/usrp_mpm/periph_manager | |
parent | 28405e54056b52fcd04fc71c6c2d72f3dc8c31cf (diff) | |
download | uhd-4c81ed0a5dd01e65db560b9ed0db14407d14ce3e.tar.gz uhd-4c81ed0a5dd01e65db560b9ed0db14407d14ce3e.tar.bz2 uhd-4c81ed0a5dd01e65db560b9ed0db14407d14ce3e.zip |
fixup! mpm: Log timeouts during API calls, reset timer on claimed calls
Diffstat (limited to 'mpm/python/usrp_mpm/periph_manager')
-rw-r--r-- | mpm/python/usrp_mpm/periph_manager/base.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/mpm/python/usrp_mpm/periph_manager/base.py b/mpm/python/usrp_mpm/periph_manager/base.py index 93edb36ce..303f7e805 100644 --- a/mpm/python/usrp_mpm/periph_manager/base.py +++ b/mpm/python/usrp_mpm/periph_manager/base.py @@ -733,6 +733,9 @@ class PeriphManagerBase(object): """ This is called when the device is claimed, in case the device needs to run any actions on claiming (e.g., light up an LED). + + Consider this a "post claim hook", not a function to actually claim + this device (which happens outside of this class). """ self.log.debug("Device was claimed. No actions defined.") @@ -740,6 +743,9 @@ class PeriphManagerBase(object): """ This is called when the device is unclaimed, in case the device needs to run any actions on claiming (e.g., turn off an LED). + + Consider this a "post unclaim hook", not a function to actually + unclaim this device (which happens outside of this class). """ self.log.debug("Device was unclaimed. No actions defined.") |