mirror of
https://github.com/saymrwulf/uhd.git
synced 2026-05-16 21:10:10 +00:00
Adding bindings for res_source_info, which allows us to use
noc_block_base::get_mtu.
Fixes: 400b00c343 ("rfnoc: adding RFNoC Python API")
20 lines
507 B
Python
20 lines
507 B
Python
#
|
|
# Copyright 2019 Ettus Research, a National Instruments Brand
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
#
|
|
""" @package rfnoc
|
|
Python UHD module containing the RFNoC API.
|
|
"""
|
|
|
|
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
|
|
NocBlock = lib.rfnoc.noc_block_base
|