diff options
author | Martin Braun <martin.braun@ettus.com> | 2017-12-08 19:00:57 -0800 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2017-12-22 15:05:57 -0800 |
commit | 58e7022062ed450c39fde27b11d743ea3f3b734b (patch) | |
tree | 698908850a86af3859be9eb2479c716f67a3befe /mpm/python/usrp_mpm/periph_manager/base.py | |
parent | 2db171798efc2e16cf2c5d85bfbfe7b032a38ead (diff) | |
download | uhd-58e7022062ed450c39fde27b11d743ea3f3b734b.tar.gz uhd-58e7022062ed450c39fde27b11d743ea3f3b734b.tar.bz2 uhd-58e7022062ed450c39fde27b11d743ea3f3b734b.zip |
mpm: Factor out xport managers as own objects
- Move XportMgr classes out of n310.py
- Subclass them there and apply N310-specific settings
- Remove chdr_interfaces option from PeriphManagerBase
Diffstat (limited to 'mpm/python/usrp_mpm/periph_manager/base.py')
-rw-r--r-- | mpm/python/usrp_mpm/periph_manager/base.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/mpm/python/usrp_mpm/periph_manager/base.py b/mpm/python/usrp_mpm/periph_manager/base.py index 2be8c7570..ff86137df 100644 --- a/mpm/python/usrp_mpm/periph_manager/base.py +++ b/mpm/python/usrp_mpm/periph_manager/base.py @@ -118,11 +118,6 @@ class PeriphManagerBase(object): # dboards, but if it's shorter, it simply won't instantiate list SPI nodes # for those dboards. dboard_spimaster_addrs = [] - # Lists the network interfaces which can theoretically support CHDR. These - # do not have to exist, but these interfaces will be probed for - # availability. If the list is empty, no CHDR traffic will be possible over - # the network. Example: ['eth1', 'eth2'] - chdr_interfaces = [] # Dictionary containing valid IDs for the update_component function for a # specific implementation. Each PeriphManagerBase-derived class should list # information required to update the component, like a callback function |