mirror of
https://github.com/saymrwulf/uhd.git
synced 2026-05-16 21:10:10 +00:00
Co-authored-by: Humberto Jimenez <humberto.jimenez@ni.com> Co-authored-by: Alex Williams <alex.williams@ni.com> Co-authored-by: Derek Kozel <derek.kozel@ni.com>
15 lines
354 B
Python
15 lines
354 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 .magnesium import Magnesium
|
|
from .rhodium import Rhodium
|
|
from .neon import Neon
|
|
from .eiscat import EISCAT
|
|
from .test import test
|
|
from .unknown import unknown
|