mirror of
https://github.com/saymrwulf/uhd.git
synced 2026-05-16 21:10:10 +00:00
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.
19 lines
510 B
Python
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
|