diff options
author | Brent Stapleton <brent.stapleton@ettus.com> | 2020-01-03 12:02:17 -0800 |
---|---|---|
committer | Brent Stapleton <brent.stapleton@ettus.com> | 2020-01-06 14:42:33 -0800 |
commit | c6a7bd6c52cfdb751084d9dcab43dbe6c02a3151 (patch) | |
tree | a3271188d3e2acc95a66c15f286e5bdb9a4dd8b1 /host/python | |
parent | f56abc714b461e79c01ceb8f90ad9403109a8e4e (diff) | |
download | uhd-c6a7bd6c52cfdb751084d9dcab43dbe6c02a3151.tar.gz uhd-c6a7bd6c52cfdb751084d9dcab43dbe6c02a3151.tar.bz2 uhd-c6a7bd6c52cfdb751084d9dcab43dbe6c02a3151.zip |
python: rfnoc: finishing noc_block_base::get_mtu
Adding bindings for res_source_info, which allows us to use
noc_block_base::get_mtu.
Fixes: 400b00c34338 ("rfnoc: adding RFNoC Python API")
Diffstat (limited to 'host/python')
-rw-r--r-- | host/python/rfnoc.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/host/python/rfnoc.py b/host/python/rfnoc.py index 690b3d841..af8200998 100644 --- a/host/python/rfnoc.py +++ b/host/python/rfnoc.py @@ -12,6 +12,8 @@ from . import libpyuhd as lib BlockID = lib.rfnoc.block_id Edge = lib.rfnoc.edge GraphEdge = lib.rfnoc.graph_edge +Source = lib.rfnoc.source +ResSourceInfo = lib.rfnoc.res_source_info RfnocGraph = lib.rfnoc.rfnoc_graph MBController = lib.rfnoc.mb_controller Timekeeper = lib.rfnoc.timekeeper |