diff options
author | Bastian Bloessl <mail@bastibl.net> | 2019-06-19 18:00:53 +0200 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2019-06-19 13:00:00 -0700 |
commit | c1a046e7640df4f4a9e29e24c6a3eeec88a62323 (patch) | |
tree | 20d4b2b8fd08e00bc4bc21de3d9ea78c00daf827 /gnuradio-runtime/python/gnuradio/ctrlport/monitor.py | |
parent | 59226dd0b43a5090daa66a59fe98aa61e56700d2 (diff) |
ctrlport monitors: fix config check
Diffstat (limited to 'gnuradio-runtime/python/gnuradio/ctrlport/monitor.py')
-rw-r--r-- | gnuradio-runtime/python/gnuradio/ctrlport/monitor.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnuradio-runtime/python/gnuradio/ctrlport/monitor.py b/gnuradio-runtime/python/gnuradio/ctrlport/monitor.py index c9e22198bb..151683318b 100644 --- a/gnuradio-runtime/python/gnuradio/ctrlport/monitor.py +++ b/gnuradio-runtime/python/gnuradio/ctrlport/monitor.py @@ -35,10 +35,10 @@ class monitor(object): # setup export prefs gr.prefs().singleton().set_bool("ControlPort","on",True) + gr.prefs().singleton().set_bool("PerfCounters","on",True) + gr.prefs().singleton().set_bool("PerfCounters","export",True) if(tool == "gr-perf-monitorx"): gr.prefs().singleton().set_bool("ControlPort","edges_list",True) - gr.prefs().singleton().set_bool("PerfCounters","on",True) - gr.prefs().singleton().set_bool("PerfCounters","export",True) def start(self): try: |