From 2319ba5e58ae5d3c847839f3229874b7695a2546 Mon Sep 17 00:00:00 2001 From: Peter Barker Date: Wed, 13 Sep 2023 11:38:27 +1000 Subject: [PATCH] autotest: stop echoing autopilot statustext messages back to autopilot These are already logged on the autopilot as MSG messages (without the extra stuff we tack on. They are also already in our .tlog because we just received them via statustext.... --- Tools/autotest/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tools/autotest/common.py b/Tools/autotest/common.py index b5017df5c7..e98e89e1b5 100644 --- a/Tools/autotest/common.py +++ b/Tools/autotest/common.py @@ -3138,7 +3138,7 @@ class AutoTest(ABC): """Called as each mavlink msg is received.""" # print("msg: %s" % str(msg)) if msg.get_type() == 'STATUSTEXT': - self.progress("AP: %s" % msg.text) + self.progress("AP: %s" % msg.text, send_statustext=False) self.write_msg_to_tlog(msg)