mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-02-10 01:44:00 -04:00
fixed a signed/unsigned warning
This commit is contained in:
parent
eed26ae91a
commit
97b3ced7aa
@ -381,8 +381,8 @@ static long old_target_bearing; // used to track difference in angle
|
||||
|
||||
static int loiter_total; // deg : how many times to loiter * 360
|
||||
static int loiter_sum; // deg : how far we have turned around a waypoint
|
||||
static long loiter_time; // millis : when we started LOITER mode
|
||||
static int loiter_time_max; // millis : how long to stay in LOITER mode
|
||||
static unsigned long loiter_time; // millis : when we started LOITER mode
|
||||
static unsigned loiter_time_max; // millis : how long to stay in LOITER mode
|
||||
|
||||
|
||||
// these are the values for navigation control functions
|
||||
|
Loading…
Reference in New Issue
Block a user