ArduCopter: remove unused variable last_5hz

This commit is contained in:
rmackay9 2012-12-20 11:37:06 +09:00 committed by Andrew Tridgell
parent 1f5fdcdaa8
commit 6baddf4aee

View File

@ -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 // returns true if it has sent a message to the ground station
static bool gcs_check() static bool gcs_check()
{ {
static uint32_t last_1hz, last_50hz, last_5s; static uint32_t last_1hz, last_50hz;
bool sent_message = false; bool sent_message = false;
uint32_t tnow = millis(); uint32_t tnow = millis();