diff options
author | Toni Jones <toni.jones@ni.com> | 2019-04-12 15:12:06 -0500 |
---|---|---|
committer | Aaron Rossetto <aaron.rossetto@ni.com> | 2021-03-04 12:09:39 -0600 |
commit | 1a9033b3e96654dcd374f9d2effe5751b36130f2 (patch) | |
tree | cfb8ea8bbd48b66f591d78d8069420cb8009bab2 /mpm/python/usrp_mpm/dboard_manager/__init__.py | |
parent | 7a9ec29dbc9fac710beebbafa2cb221695eda189 (diff) | |
download | uhd-1a9033b3e96654dcd374f9d2effe5751b36130f2.tar.gz uhd-1a9033b3e96654dcd374f9d2effe5751b36130f2.tar.bz2 uhd-1a9033b3e96654dcd374f9d2effe5751b36130f2.zip |
mpm: Add DboardIface for MB DB driver control
Add DboardIface class which will act as an interface to bridge the gap
between MB and DB drivers in MPM. The DboardIface will be implemented
by each Motherboard with MB specific information. Dboard objects
will then instantiate the class in order to utilize the implemented
control functions.
Diffstat (limited to 'mpm/python/usrp_mpm/dboard_manager/__init__.py')
-rw-r--r-- | mpm/python/usrp_mpm/dboard_manager/__init__.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mpm/python/usrp_mpm/dboard_manager/__init__.py b/mpm/python/usrp_mpm/dboard_manager/__init__.py index 3677394fc..58262025e 100644 --- a/mpm/python/usrp_mpm/dboard_manager/__init__.py +++ b/mpm/python/usrp_mpm/dboard_manager/__init__.py @@ -16,3 +16,4 @@ if not __simulated__: from .eiscat import EISCAT from .test import test from .unknown import unknown + from .dboard_iface import DboardIface |