From 6baddf4aee6bc003da96cc59b8348561227fc4eb Mon Sep 17 00:00:00 2001 From: rmackay9 Date: Thu, 20 Dec 2012 11:37:06 +0900 Subject: [PATCH] ArduCopter: remove unused variable last_5hz --- ArduCopter/GCS_Mavlink.pde | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ArduCopter/GCS_Mavlink.pde b/ArduCopter/GCS_Mavlink.pde index 922386f478..31407a2f33 100644 --- a/ArduCopter/GCS_Mavlink.pde +++ b/ArduCopter/GCS_Mavlink.pde @@ -23,7 +23,7 @@ static void gcs_send_text_fmt(const prog_char_t *fmt, ...); // returns true if it has sent a message to the ground station static bool gcs_check() { - static uint32_t last_1hz, last_50hz, last_5s; + static uint32_t last_1hz, last_50hz; bool sent_message = false; uint32_t tnow = millis();