diff options
author | Martin Braun <martin.braun@ettus.com> | 2017-10-23 13:23:05 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2017-12-22 15:04:03 -0800 |
commit | 1cf5c1600f03f398986219ec0a7169eb7e177e9f (patch) | |
tree | 8f227a35defc49a8d2504a60426dae958b5532ee /mpm | |
parent | 219687843979666df38c6b4b31b5f544282c6640 (diff) | |
download | uhd-1cf5c1600f03f398986219ec0a7169eb7e177e9f.tar.gz uhd-1cf5c1600f03f398986219ec0a7169eb7e177e9f.tar.bz2 uhd-1cf5c1600f03f398986219ec0a7169eb7e177e9f.zip |
n3xx_bist: Fix spurious reference to self.REV
Diffstat (limited to 'mpm')
-rwxr-xr-x | mpm/python/n3xx_bist | 3 |
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) |