From ad8ef09f15c986e4557d47edf3b4e5c834908482 Mon Sep 17 00:00:00 2001 From: Mark Jessop Date: Sat, 27 Jul 2019 11:49:46 +0930 Subject: [PATCH] Add notes about deprecating the Telemetry GUI. --- rx/TelemetryGUI.py | 3 +++ start_rx.sh | 9 ++++++--- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/rx/TelemetryGUI.py b/rx/TelemetryGUI.py index 1a11d3e..59296ef 100644 --- a/rx/TelemetryGUI.py +++ b/rx/TelemetryGUI.py @@ -5,6 +5,9 @@ # Copyright (C) 2018 Mark Jessop # Released under GNU GPL v3 or later # +# NOTE: This is somewhat deprecated as we no longer fly IMUs on Wenet flights. +# It may be re-visited in the future if/when required. +# from pyqtgraph.Qt import QtCore, QtGui import pyqtgraph as pg diff --git a/start_rx.sh b/start_rx.sh index b03277b..8690cb0 100755 --- a/start_rx.sh +++ b/start_rx.sh @@ -91,9 +91,12 @@ SSDV_UPLOAD_PID=$! # Start the SSDV RX GUI. python rx_gui.py & RX_GUI_PID=$! + +# NOTE: The Telemetry GUI is now somewhat deprecated due to us not regularly flying an IMU +# on the Wenet payload. # Start the Telemetry GUI. -python TelemetryGUI.py $MYCALL & -TELEM_GUI_PID=$! +#python TelemetryGUI.py $MYCALL & +#TELEM_GUI_PID=$! # Do some checks if we are in GQRX mode. @@ -154,4 +157,4 @@ fi # Kill off the SSDV Uploader and the GUIs kill $SSDV_UPLOAD_PID kill $RX_GUI_PID -kill $TELEM_GUI_PID +#kill $TELEM_GUI_PID