uhd/mpm/python/usrp_mpm/dboard_manager/__init__.py
Toni Jones 1a9033b3e9 mpm: Add DboardIface for MB DB driver control
Add DboardIface class which will act as an interface to bridge the gap
between MB and DB drivers in MPM. The DboardIface will be implemented
by each Motherboard with MB specific information. Dboard objects
will then instantiate the class in order to utilize the implemented
control functions.
2021-03-04 12:09:39 -06:00

19 lines
510 B
Python

#
# Copyright 2017-2018 Ettus Research, a National Instruments Company
#
# SPDX-License-Identifier: GPL-3.0-or-later
#
"""
dboards module __init__.py
"""
from .base import DboardManagerBase
from usrp_mpm import __simulated__
if not __simulated__:
from .magnesium import Magnesium
from .rhodium import Rhodium
from .neon import Neon
from .e31x_db import E31x_db
from .eiscat import EISCAT
from .test import test
from .unknown import unknown
from .dboard_iface import DboardIface