mirror of
https://github.com/saymrwulf/uhd.git
synced 2026-05-15 21:01:26 +00:00
- Turns the E310 into an MPM device (like N3xx, E320) - Factor out common code between E320 and E310, maximize sharing between the two devices - Remove all pre-MPM E310 code that is no longer needed - Modify MPM to remove all existing overlays before applying new ones (this is necessary to enable idle image mode for E310) Co-authored-by: Virendra Kakade <virendra.kakade@ni.com> Signed-off-by: Virendra Kakade <virendra.kakade@ni.com>
16 lines
383 B
Python
16 lines
383 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 .e31x_db import E31x_db
|
|
from .eiscat import EISCAT
|
|
from .test import test
|
|
from .unknown import unknown
|