From 901e3186529fd1b854ea59efe6dd17277f67e068 Mon Sep 17 00:00:00 2001 From: Randy Mackay Date: Wed, 10 Feb 2016 10:50:19 +0900 Subject: [PATCH] Tracker: do not save data stream rate updates to eeprom --- AntennaTracker/GCS_Mavlink.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AntennaTracker/GCS_Mavlink.cpp b/AntennaTracker/GCS_Mavlink.cpp index 9afa77903a..fb64667f2e 100644 --- a/AntennaTracker/GCS_Mavlink.cpp +++ b/AntennaTracker/GCS_Mavlink.cpp @@ -573,7 +573,7 @@ void GCS_MAVLINK::handleMessage(mavlink_message_t* msg) // alas we have to look inside each packet to see if its for us or for the remote case MAVLINK_MSG_ID_REQUEST_DATA_STREAM: { - handle_request_data_stream(msg, true); + handle_request_data_stream(msg, false); break; }