mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-02-24 00:33:56 -04:00
autotest: fixed import of mavwp
This commit is contained in:
parent
75bcd7cdab
commit
21436dc1a6
@ -2,7 +2,8 @@
|
|||||||
|
|
||||||
import util, pexpect, sys, time, math, shutil, os
|
import util, pexpect, sys, time, math, shutil, os
|
||||||
from common import *
|
from common import *
|
||||||
import mavutil, random
|
from pymavlink import mavutil
|
||||||
|
import random
|
||||||
|
|
||||||
# get location of scripts
|
# get location of scripts
|
||||||
testdir=os.path.dirname(os.path.realpath(__file__))
|
testdir=os.path.dirname(os.path.realpath(__file__))
|
||||||
|
@ -2,7 +2,8 @@
|
|||||||
|
|
||||||
import util, pexpect, sys, time, math, shutil, os
|
import util, pexpect, sys, time, math, shutil, os
|
||||||
from common import *
|
from common import *
|
||||||
import mavutil, mavwp, random
|
from pymavlink import mavutil, mavwp
|
||||||
|
import random
|
||||||
|
|
||||||
# get location of scripts
|
# get location of scripts
|
||||||
testdir=os.path.dirname(os.path.realpath(__file__))
|
testdir=os.path.dirname(os.path.realpath(__file__))
|
||||||
|
@ -2,7 +2,8 @@
|
|||||||
|
|
||||||
import util, pexpect, sys, time, math, shutil, os
|
import util, pexpect, sys, time, math, shutil, os
|
||||||
from common import *
|
from common import *
|
||||||
import mavutil, random
|
from pymavlink import mavutil
|
||||||
|
import random
|
||||||
|
|
||||||
# get location of scripts
|
# get location of scripts
|
||||||
testdir=os.path.dirname(os.path.realpath(__file__))
|
testdir=os.path.dirname(os.path.realpath(__file__))
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
import util, pexpect, time, math, mavwp
|
import util, pexpect, time, math
|
||||||
|
from pymavlink import mavwp
|
||||||
|
|
||||||
# a list of pexpect objects to read while waiting for
|
# a list of pexpect objects to read while waiting for
|
||||||
# messages. This keeps the output to stdout flowing
|
# messages. This keeps the output to stdout flowing
|
||||||
|
Loading…
Reference in New Issue
Block a user