aboutsummaryrefslogtreecommitdiffstats
path: root/mpm
diff options
context:
space:
mode:
authorMartin Braun <martin.braun@ettus.com>2017-10-23 13:23:05 -0700
committerMartin Braun <martin.braun@ettus.com>2017-12-22 15:04:03 -0800
commit1cf5c1600f03f398986219ec0a7169eb7e177e9f (patch)
tree8f227a35defc49a8d2504a60426dae958b5532ee /mpm
parent219687843979666df38c6b4b31b5f544282c6640 (diff)
downloaduhd-1cf5c1600f03f398986219ec0a7169eb7e177e9f.tar.gz
uhd-1cf5c1600f03f398986219ec0a7169eb7e177e9f.tar.bz2
uhd-1cf5c1600f03f398986219ec0a7169eb7e177e9f.zip
n3xx_bist: Fix spurious reference to self.REV
Diffstat (limited to 'mpm')
-rwxr-xr-xmpm/python/n3xx_bist3
1 files changed, 1 insertions, 2 deletions
diff --git a/mpm/python/n3xx_bist b/mpm/python/n3xx_bist
index 516ee94fc..363b3004c 100755
--- a/mpm/python/n3xx_bist
+++ b/mpm/python/n3xx_bist
@@ -239,7 +239,6 @@ class N310BIST(object):
'standard': ["ddr3", "gpsdo", "rtc", "temp", "clock_int", "tpm"],
'extended': "*",
}
- REV = 3
@staticmethod
def make_arg_parser():
@@ -688,7 +687,7 @@ class N310BIST(object):
'read_patterns': list(patterns),
}
from usrp_mpm.periph_manager import n310
- gpio_tca6424 = n310.TCA6424(self.REV)
+ gpio_tca6424 = n310.TCA6424(self.mb_rev)
gpio_tca6424.set("FPGA-GPIO-EN")
# Allow some time for the front-panel GPIOs to become usable
time.sleep(.5)