diff options
author | Martin Braun <martin.braun@ettus.com> | 2017-05-02 14:31:48 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2017-12-22 15:03:52 -0800 |
commit | 1b27c16dd3d723de2eaeec2e05854cabaebd4a76 (patch) | |
tree | 28462faed227997377f7f5d169d52243c95584fa /mpm/python/usrp_mpm/dboard_manager/magnesium.py | |
parent | ca3a8407561cef5e86bc128990604eafc828871e (diff) | |
download | uhd-1b27c16dd3d723de2eaeec2e05854cabaebd4a76.tar.gz uhd-1b27c16dd3d723de2eaeec2e05854cabaebd4a76.tar.bz2 uhd-1b27c16dd3d723de2eaeec2e05854cabaebd4a76.zip |
mpm: Updating ref clock frequency will propagate to dboard, changed slot indexing to numbers
Diffstat (limited to 'mpm/python/usrp_mpm/dboard_manager/magnesium.py')
-rw-r--r-- | mpm/python/usrp_mpm/dboard_manager/magnesium.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mpm/python/usrp_mpm/dboard_manager/magnesium.py b/mpm/python/usrp_mpm/dboard_manager/magnesium.py index aa667e1e0..fa2dbe9c3 100644 --- a/mpm/python/usrp_mpm/dboard_manager/magnesium.py +++ b/mpm/python/usrp_mpm/dboard_manager/magnesium.py @@ -36,7 +36,7 @@ class Magnesium(DboardManagerBase): # Maps the chipselects to the corresponding devices: spi_chipselect = {"lmk": 0, "mykonos": 1} - def __init__(self, spi_devices, eeprom_data, *args, **kwargs): + def __init__(self, slot_idx, spi_devices, eeprom_data, *args, **kwargs): super(Magnesium, self).__init__(*args, **kwargs) self.log = get_logger("Magnesium") # eeprom_data is a tuple (head_dict, raw_data) |