aboutsummaryrefslogtreecommitdiffstats
path: root/mpm/python/usrp_mpm/periph_manager/e320.py
diff options
context:
space:
mode:
authorMartin Braun <martin.braun@ettus.com>2022-01-28 11:55:14 +0100
committerAaron Rossetto <aaron.rossetto@ni.com>2022-02-16 14:53:37 -0600
commit3ad6dc8a699d302a1f31b101a0b94ada8e343bc0 (patch)
tree27f2ce126fa715aa4594629bb3bbbf632584a2ff /mpm/python/usrp_mpm/periph_manager/e320.py
parent541865b88b0b6f7425bec7a6ade8a99763e92b3f (diff)
downloaduhd-3ad6dc8a699d302a1f31b101a0b94ada8e343bc0.tar.gz
uhd-3ad6dc8a699d302a1f31b101a0b94ada8e343bc0.tar.bz2
uhd-3ad6dc8a699d302a1f31b101a0b94ada8e343bc0.zip
mpm: eeprom: Improve E320 and N3x0 EEPROM code/comments
- Fix some Pylint warnings in eeprom.py - Improve comments in n3xx.py and e320.py regarding rev_compat values in EEPROM
Diffstat (limited to 'mpm/python/usrp_mpm/periph_manager/e320.py')
-rw-r--r--mpm/python/usrp_mpm/periph_manager/e320.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/mpm/python/usrp_mpm/periph_manager/e320.py b/mpm/python/usrp_mpm/periph_manager/e320.py
index fe7debd62..b191285e8 100644
--- a/mpm/python/usrp_mpm/periph_manager/e320.py
+++ b/mpm/python/usrp_mpm/periph_manager/e320.py
@@ -87,6 +87,11 @@ class e320(ZynqComponents, PeriphManagerBase):
mboard_info = {"type": "e3xx",
"product": "e320"
}
+ # This is the latest HW revision that his version of MPM is aware of. This
+ # version of MPM will be able to run with any hardware which has a rev_compat
+ # field that is equal or less than this value.
+ # Note: If the hardware is revved in a non-compatible way, eeprom-init.c
+ # must also be updated (derive_rev_compat).
mboard_max_rev = 4 # rev E
mboard_sensor_callback_map = {
'ref_locked': 'get_ref_lock_sensor',