diff options
author | Martin Braun <martin.braun@ettus.com> | 2021-04-12 17:05:57 +0200 |
---|---|---|
committer | Aaron Rossetto <aaron.rossetto@ni.com> | 2021-04-12 15:14:45 -0500 |
commit | 89f99fac006dd2039d75f524961a176cb6089c59 (patch) | |
tree | a717a2fb6074046770bed60da69ccff735a6968d /mpm/python/n3xx_bist | |
parent | d3da5e4cda3f75649381788014b214e0727ef5d1 (diff) | |
download | uhd-89f99fac006dd2039d75f524961a176cb6089c59.tar.gz uhd-89f99fac006dd2039d75f524961a176cb6089c59.tar.bz2 uhd-89f99fac006dd2039d75f524961a176cb6089c59.zip |
mpm: Remove references to rfnoc_num_blocks
rfnoc_num_blocks is a device arg that could be used in UHD 3.15 (and
below) to artificially skip enumeration of RFNoC blocks. Since the block
enumeration works very differently in UHD 4, this arg was never
supported there.
This removes references to this arg in some BIST files. It is not
harmful, but also serves no purpose, and could be construed as being
useful upon lecture of these codes.
Diffstat (limited to 'mpm/python/n3xx_bist')
-rwxr-xr-x | mpm/python/n3xx_bist | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mpm/python/n3xx_bist b/mpm/python/n3xx_bist index c125ac1ae..37f64bd5b 100755 --- a/mpm/python/n3xx_bist +++ b/mpm/python/n3xx_bist @@ -287,7 +287,7 @@ class N3XXBIST(bist.UsrpBIST): result = bist.get_ref_clock_prop( 'internal', 'internal', - extra_args={'skip_rfic': 1, 'rfnoc_num_blocks': 0} + extra_args={'skip_rfic': 1} ) return 'error_msg' not in result, result @@ -314,7 +314,7 @@ class N3XXBIST(bist.UsrpBIST): result = bist.get_ref_clock_prop( 'external', 'external', - extra_args={'skip_rfic': 1, 'rfnoc_num_blocks': 0} + extra_args={'skip_rfic': 1} ) return 'error_msg' not in result, result @@ -341,7 +341,7 @@ class N3XXBIST(bist.UsrpBIST): result = bist.get_ref_clock_prop( 'gpsdo', 'gpsdo', - extra_args={'skip_rfic': 1, 'rfnoc_num_blocks': 0} + extra_args={'skip_rfic': 1} ) return 'error_msg' not in result, result |