ArduCopter: remove unused variable last_5hz

This commit is contained in:
rmackay9 2012-12-20 11:37:06 +09:00
parent 415029fdf5
commit 9706193463

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
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();