diff options
author | Martin Braun <martin.braun@ettus.com> | 2018-01-08 19:23:28 -0800 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2018-02-07 14:04:30 -0800 |
commit | 852bf3aa10613e80a8b9434b2d69f967b53a2d97 (patch) | |
tree | 28800ad095553490d6df401c6ee3a6beaaa5676c /mpm/python/usrp_mpm/xports/xportmgr_liberio.py | |
parent | 88ab35529b5be85654b4b00cd558bc083b692df4 (diff) | |
download | uhd-852bf3aa10613e80a8b9434b2d69f967b53a2d97.tar.gz uhd-852bf3aa10613e80a8b9434b2d69f967b53a2d97.tar.bz2 uhd-852bf3aa10613e80a8b9434b2d69f967b53a2d97.zip |
mpm: n310: Return CHDR addresses as part of device_info
Reviewed-by: Brent Stapleton <brent.stapleton@ettus.com>
Diffstat (limited to 'mpm/python/usrp_mpm/xports/xportmgr_liberio.py')
-rw-r--r-- | mpm/python/usrp_mpm/xports/xportmgr_liberio.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/mpm/python/usrp_mpm/xports/xportmgr_liberio.py b/mpm/python/usrp_mpm/xports/xportmgr_liberio.py index 8ac2f06f3..f1e9fe2de 100644 --- a/mpm/python/usrp_mpm/xports/xportmgr_liberio.py +++ b/mpm/python/usrp_mpm/xports/xportmgr_liberio.py @@ -38,6 +38,18 @@ class XportMgrLiberio(object): " Clean up after a session terminates " self._data_chan_ctr = 0 + def get_xport_info(self): + """ + Returns a dictionary of useful information, e.g. for appending into the + device info. + + Note: This can be run by callers not owning a claim, even when the + device has been claimed by someone else. + + In this case, returns an empty dict. + """ + return {} + def request_xport( self, sid, |