mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-02-21 23:33:57 -04:00
autotest: python3 fix for fly_guided_move_to
This commit is contained in:
parent
82480f0a3d
commit
ba5e4b8e37
@ -4085,8 +4085,8 @@ class AutoTestCopter(AutoTest):
|
||||
1, # target component id
|
||||
mavutil.mavlink.MAV_FRAME_GLOBAL_INT,
|
||||
0b1111111111111000, # mask specifying use-only-lat-lon-alt
|
||||
destination.lat *1e7, # lat
|
||||
destination.lng *1e7, # lon
|
||||
int(destination.lat *1e7), # lat
|
||||
int(destination.lng *1e7), # lon
|
||||
destination.alt, # alt
|
||||
0, # vx
|
||||
0, # vy
|
||||
|
Loading…
Reference in New Issue
Block a user