aboutsummaryrefslogtreecommitdiffstats
path: root/mpm/python/usrp_mpm/periph_manager/base.py
diff options
context:
space:
mode:
authorRobertWalstab <robert.walstab@gmail.com>2020-07-14 10:55:35 +0200
committerAaron Rossetto <aaron.rossetto@ni.com>2020-07-20 16:01:03 -0500
commit1d3866bef4e4677b95d3364b94880d7823d2530f (patch)
tree4ab0fe6879f60c4c8c3e007ae92acd11b82fbd2f /mpm/python/usrp_mpm/periph_manager/base.py
parent46f61951e88d8936814095bf2f8db014b6ff67e6 (diff)
downloaduhd-1d3866bef4e4677b95d3364b94880d7823d2530f.tar.gz
uhd-1d3866bef4e4677b95d3364b94880d7823d2530f.tar.bz2
uhd-1d3866bef4e4677b95d3364b94880d7823d2530f.zip
uhd: remove liberio
Diffstat (limited to 'mpm/python/usrp_mpm/periph_manager/base.py')
-rw-r--r--mpm/python/usrp_mpm/periph_manager/base.py7
1 files changed, 1 insertions, 6 deletions
diff --git a/mpm/python/usrp_mpm/periph_manager/base.py b/mpm/python/usrp_mpm/periph_manager/base.py
index c13fb58bc..09f66a2d4 100644
--- a/mpm/python/usrp_mpm/periph_manager/base.py
+++ b/mpm/python/usrp_mpm/periph_manager/base.py
@@ -845,11 +845,9 @@ class PeriphManagerBase(object):
The return value is a list of strings. Every string is a key for a
transport type. Values include:
- "udp": Means this device can be reached via UDP
- - "liberio": Means this device can be reached via Liberio (local DMA)
The list is filtered based on what the device knows about where the UHD
- session is. For example, on an N310, it will only either return "UDP"
- or "Liberio", depending on if we're remotely launching UHD, or locally.
+ session is. For example, on an N310, it will only return "UDP".
In order to get further information about how to connect to the device,
the keys returned from this function can be used with
@@ -870,9 +868,6 @@ class PeriphManagerBase(object):
- port (UDP port)
- link_rate (bps of the link, e.g. 10e9 for 10GigE)
- For Liberio, every entry has the following keys:
- - tx_dev: TX device (/dev/tx-dma*)
- - rx_dev: RX device (/dev/rx-dma*)
"""
raise NotImplementedError("get_chdr_link_options() not implemented.")