9 lines
173 B
Python
9 lines
173 B
Python
|
import arducopter
|
||
|
|
||
|
def unit_test(mavproxy, mav):
|
||
|
'''A scripted flight plan'''
|
||
|
if (arducopter.calibrate_level(mavproxy, mav)):
|
||
|
return True
|
||
|
return False
|
||
|
|