diff options
author | michael-west <michael.west@ettus.com> | 2018-01-15 13:51:42 -0800 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2018-01-16 09:48:10 -0800 |
commit | 12b7a75dc161469400cbfcb3be5c282888d0eef1 (patch) | |
tree | 05598dbed2bce34adca48bd35ff4b14a553f31b3 /tools | |
parent | 3a9cc3b93f6550c569e0a33e2e67fcd610c2eaf4 (diff) | |
download | uhd-12b7a75dc161469400cbfcb3be5c282888d0eef1.tar.gz uhd-12b7a75dc161469400cbfcb3be5c282888d0eef1.tar.bz2 uhd-12b7a75dc161469400cbfcb3be5c282888d0eef1.zip |
gr-usrptest: Added copy of args to prevent mangling that resulted in a parser error
Diffstat (limited to 'tools')
-rw-r--r-- | tools/gr-usrptest/python/flowgraphs/phasealignment_fg.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/gr-usrptest/python/flowgraphs/phasealignment_fg.py b/tools/gr-usrptest/python/flowgraphs/phasealignment_fg.py index f120e2421..3db41c7af 100644 --- a/tools/gr-usrptest/python/flowgraphs/phasealignment_fg.py +++ b/tools/gr-usrptest/python/flowgraphs/phasealignment_fg.py @@ -26,7 +26,9 @@ class phasealignment_fg(gr.top_block): self.phase_diff_calc = list() self.measurement_sink = list() self.uhd_app = copy.copy(uhd_app) + self.uhd_app.args = copy.copy(uhd_app.args) self.tx_app = copy.copy(uhd_app) + self.tx_app.args = copy.copy(uhd_app.args) self.samp_rate = uhd_app.args.samp_rate # Create all devices specified in --receiver # Create all remaining blocks and connect devices to the first port and |