mirror of
https://github.com/saymrwulf/uhd.git
synced 2026-05-16 21:10:10 +00:00
Co-authored-by: Lars Amsel <lars.amsel@ni.com> Co-authored-by: Michael Auchter <michael.auchter@ni.com> Co-authored-by: Martin Braun <martin.braun@ettus.com> Co-authored-by: Paul Butler <paul.butler@ni.com> Co-authored-by: Cristina Fuentes <cristina.fuentes-curiel@ni.com> Co-authored-by: Humberto Jimenez <humberto.jimenez@ni.com> Co-authored-by: Virendra Kakade <virendra.kakade@ni.com> Co-authored-by: Lane Kolbly <lane.kolbly@ni.com> Co-authored-by: Max Köhler <max.koehler@ni.com> Co-authored-by: Andrew Lynch <andrew.lynch@ni.com> Co-authored-by: Grant Meyerhoff <grant.meyerhoff@ni.com> Co-authored-by: Ciro Nishiguchi <ciro.nishiguchi@ni.com> Co-authored-by: Thomas Vogel <thomas.vogel@ni.com>
24 lines
715 B
Python
24 lines
715 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 .empty_slot import EmptySlot
|
|
from .zbx import ZBX
|
|
from .test import test
|
|
from .unknown import unknown
|
|
from .dboard_iface import DboardIface
|
|
from .x4xx_db_iface import X4xxDboardIface
|
|
from .x4xx_debug_db import X4xxDebugDboard
|
|
from .x4xx_if_test_cca import X4xxIfTestCCA
|