diff options
Diffstat (limited to 'mpm')
-rwxr-xr-x | mpm/python/n3xx_bist | 6 | ||||
-rw-r--r-- | mpm/python/usrp_mpm/bist.py | 2 |
2 files changed, 4 insertions, 4 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 diff --git a/mpm/python/usrp_mpm/bist.py b/mpm/python/usrp_mpm/bist.py index 2287d79ab..bd0dbb8d3 100644 --- a/mpm/python/usrp_mpm/bist.py +++ b/mpm/python/usrp_mpm/bist.py @@ -274,7 +274,7 @@ def test_ddr3_with_usrp_probe(): reporting a good throughput. This is a bit of a roundabout way of testing the DDR3, but it uses existing software and also tests the RFNoC pathways. """ - ddr3_bist_executor = 'uhd_usrp_probe --args addr=127.0.0.1,rfnoc_num_blocks=1' + ddr3_bist_executor = 'uhd_usrp_probe --args addr=127.0.0.1' try: output = subprocess.check_output( ddr3_bist_executor, |