mirror of
https://github.com/saymrwulf/uhd.git
synced 2026-05-16 21:10:10 +00:00
The FSRU (aka EISCAT) was never supported in UHD 4.0. The FPGA repository never had the relevant files, and the block controller also never existed. This removes all the corresponding files from MPM, as well as some references from makefiles.
23 lines
684 B
Python
23 lines
684 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 .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
|