Tools: autotest: add python headers to scripts

Tools: arduplane.py add python header

Tools: apmrover2.py add python header

Tools: arducopter.py add python header

Tools: ardusub.py add python header

Tools: quadplane.py add python header
This commit is contained in:
Pierre Kancir 2017-02-21 18:32:26 +01:00 committed by Peter Barker
parent 305f203dd3
commit 76bb081d60
5 changed files with 14 additions and 11 deletions

View File

@ -1,4 +1,6 @@
# drive APMrover2 in SITL
#!/usr/bin/env python
# Drive APMrover2 in SITL
from __future__ import print_function
import os
import shutil

View File

@ -1,11 +1,6 @@
# fly ArduCopter in SITL
# Flight mode switch positions are set-up in arducopter.param to be
# switch 1 = Circle
# switch 2 = Land
# switch 3 = RTL
# switch 4 = Auto
# switch 5 = Loiter
# switch 6 = Stabilize
#!/usr/bin/env python
# Fly ArduCopter in SITL
from __future__ import print_function
import math
import os

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
# Fly ArduPlane in SITL
from __future__ import print_function
import math

View File

@ -1,4 +1,6 @@
# drive APMrover2 in SITL
#!/usr/bin/env python
# Dive ArduSub in SITL
from __future__ import print_function
import os
import shutil

View File

@ -1,4 +1,6 @@
# fly ArduPlane QuadPlane in SITL
#!/usr/bin/env python
# Fly ArduPlane QuadPlane in SITL
from __future__ import print_function
import os
import pexpect