diff options
author | Matthew Crymble <matthew.crymble@ni.com> | 2019-09-10 15:44:40 -0500 |
---|---|---|
committer | Brent Stapleton <brent.stapleton@ettus.com> | 2019-09-24 17:23:44 -0700 |
commit | f47d805cc3999a98055c9a1ee132a40c2f58d515 (patch) | |
tree | 489f871adf78b3e46dc4e58fcee40103a2f1e01e /mpm/python/usrp_mpm/bist.py | |
parent | 22b9593dce1ad034ef84ee3609d2ccbceeb33098 (diff) | |
download | uhd-f47d805cc3999a98055c9a1ee132a40c2f58d515.tar.gz uhd-f47d805cc3999a98055c9a1ee132a40c2f58d515.tar.bz2 uhd-f47d805cc3999a98055c9a1ee132a40c2f58d515.zip |
mpm: fixed mboard_max_revision value
This value should be 9 to correspond with the rev J motherboards.
This property was renamed to mboard_last_rev_compat in a previous commit.
But mboard_max_rev is actually a more accurate description,
since it specifies the latest hardware revision that the software
is aware of. I renamed all references back to mboard_max_rev.
Diffstat (limited to 'mpm/python/usrp_mpm/bist.py')
-rw-r--r-- | mpm/python/usrp_mpm/bist.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mpm/python/usrp_mpm/bist.py b/mpm/python/usrp_mpm/bist.py index 7957f2f37..e26d6d36c 100644 --- a/mpm/python/usrp_mpm/bist.py +++ b/mpm/python/usrp_mpm/bist.py @@ -495,7 +495,7 @@ class UsrpBIST(object): # If this is true, trigger a reload of the default FPGA image self.reload_fpga_image = False try: - default_rev = self.get_mb_periph_mgr().mboard_last_rev_compat + default_rev = self.get_mb_periph_mgr().mboard_max_rev except ImportError: # This means we're in dry run mode or something like that, so just # pick something |