diff options
author | Brent Stapleton <brent.stapleton@ettus.com> | 2018-07-03 13:58:56 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2018-07-11 12:42:45 -0700 |
commit | 05722dcc51a09084865736651e46326041dd6038 (patch) | |
tree | 75730f1966144b07ae4784b625723853e3de8bbc /mpm/python/usrp_mpm/CMakeLists.txt | |
parent | b39358f490a24ffe4b8b29227736b8d2eb40b956 (diff) | |
download | uhd-05722dcc51a09084865736651e46326041dd6038.tar.gz uhd-05722dcc51a09084865736651e46326041dd6038.tar.bz2 uhd-05722dcc51a09084865736651e46326041dd6038.zip |
mpm: n3xx: Factor out component updating
- Refactoring component (FPGA, DTS) updating functions out of
n3xx.py into their own components.py. The ZynqComponent class now
defines the methods to update these two components.
- Adding super().__init__() to the PeriphManagerBase class. This is
needed to get the multiple inheritance used in N3XX now to work, and
(apparently) good Python practice.
Diffstat (limited to 'mpm/python/usrp_mpm/CMakeLists.txt')
-rw-r--r-- | mpm/python/usrp_mpm/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mpm/python/usrp_mpm/CMakeLists.txt b/mpm/python/usrp_mpm/CMakeLists.txt index a3585cc6b..8d2af75ce 100644 --- a/mpm/python/usrp_mpm/CMakeLists.txt +++ b/mpm/python/usrp_mpm/CMakeLists.txt @@ -12,6 +12,7 @@ SET(USRP_MPM_TOP_FILES ${CMAKE_CURRENT_SOURCE_DIR}/__init__.py ${CMAKE_CURRENT_SOURCE_DIR}/aurora_control.py ${CMAKE_CURRENT_SOURCE_DIR}/bfrfs.py + ${CMAKE_CURRENT_SOURCE_DIR}/components.py ${CMAKE_CURRENT_SOURCE_DIR}/discovery.py ${CMAKE_CURRENT_SOURCE_DIR}/eeprom.py ${CMAKE_CURRENT_SOURCE_DIR}/ethtable.py |