made timer unsigned

This commit is contained in:
Jason Short 2012-02-21 21:49:03 -08:00
parent 42b5d47f7b
commit 729c824809
1 changed files with 1 additions and 1 deletions

View File

@ -594,7 +594,7 @@ static byte throttle_mode;
// This flag is reset when we are in a manual throttle mode with 0 throttle or disarmed // This flag is reset when we are in a manual throttle mode with 0 throttle or disarmed
static boolean takeoff_complete; static boolean takeoff_complete;
// Used to record the most recent time since we enaged the throttle to take off // Used to record the most recent time since we enaged the throttle to take off
static int32_t takeoff_timer; static uint32_t takeoff_timer;
// Used to see if we have landed and if we should shut our engines - not fully implemented // Used to see if we have landed and if we should shut our engines - not fully implemented
static boolean land_complete = true; static boolean land_complete = true;
// used to manually override throttle in interactive Alt hold modes // used to manually override throttle in interactive Alt hold modes