diff options
author | Martin Braun <martin.braun@ettus.com> | 2022-01-28 16:29:07 +0100 |
---|---|---|
committer | Aaron Rossetto <aaron.rossetto@ni.com> | 2022-02-01 14:38:28 -0600 |
commit | 13f4b9ec43e581f994a235619495ccd06c98ad54 (patch) | |
tree | b701d210c67ebacc17ebfa2b0871ab641e709bec /mpm/python/usrp_mpm/bist.py | |
parent | 3a249aa0b11e24d2663b720316ed6edc1e2fd8ad (diff) | |
download | uhd-13f4b9ec43e581f994a235619495ccd06c98ad54.tar.gz uhd-13f4b9ec43e581f994a235619495ccd06c98ad54.tar.bz2 uhd-13f4b9ec43e581f994a235619495ccd06c98ad54.zip |
mpm: Remove further references to rfnoc_num_blocks
This is a follow-up to 89f99fac. In 2a575bf9b, a reference to
rfnoc_num_blocks was accidentally put back into MPM.
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 6678b132d..6a7886515 100644 --- a/mpm/python/usrp_mpm/bist.py +++ b/mpm/python/usrp_mpm/bist.py @@ -276,7 +276,7 @@ def test_ddr3_with_usrp_probe(extra_args=None): 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. """ - dflt_args = {'addr':'127.0.0.1', 'rfnoc_num_blocks':1} + dflt_args = {'addr':'127.0.0.1'} extra_args = extra_args or {} # merge args dicts, extra_args overrides dflt_args if keys exists in both dicts args = {**dflt_args, **extra_args} |