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/gr-ctrlport-monitor | |
parent | 59226dd0b43a5090daa66a59fe98aa61e56700d2 (diff) |
ctrlport monitors: fix config check
Diffstat (limited to 'gnuradio-runtime/python/gnuradio/ctrlport/gr-ctrlport-monitor')
-rw-r--r-- | gnuradio-runtime/python/gnuradio/ctrlport/gr-ctrlport-monitor | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnuradio-runtime/python/gnuradio/ctrlport/gr-ctrlport-monitor b/gnuradio-runtime/python/gnuradio/ctrlport/gr-ctrlport-monitor index b1f4f321ec..09edfbebae 100644 --- a/gnuradio-runtime/python/gnuradio/ctrlport/gr-ctrlport-monitor +++ b/gnuradio-runtime/python/gnuradio/ctrlport/gr-ctrlport-monitor @@ -752,7 +752,10 @@ class MyApp(object): try: GNURadioControlPortClient(args.host, args.port, 'thrift', self.run, Qt.QApplication(sys.argv).exec_) except: - print("Control Port failed to connect.") + print("ControlPort failed to connect. Check the config of your endpoint.") + print("\t[ControlPort] on = True") + print("\t[PerfCounters] on = True") + print("\t[PerfCounters] export = True") sys.exit(1) def run(self, client): |