mirror of
https://github.com/saymrwulf/uhd.git
synced 2026-05-16 21:10:10 +00:00
This commit adds daughterboard simulation to the simulator. There is a sim_dboard class which registers it's methods with the rpc server. These methods are visible over mpm as well as the mpm_shell. Signed-off-by: Samuel O'Brien <sam.obrien@ni.com>
18 lines
468 B
Python
18 lines
468 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
|