You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
from LogAnalyzer import Test,TestResult
|
|
|
|
import DataflashLog
|
|
|
|
|
|
|
|
|
|
|
|
class TestBalanceTwist(Test):
|
|
|
|
'''test for badly unbalanced copter, including yaw twist'''
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
self.name = "Balance/Twist"
|
|
|
|
self.enable = False # TEMP
|
|
|
|
|
|
|
|
def run(self, logdata):
|
|
|
|
self.result = TestResult()
|
|
|
|
self.result.status = TestResult.StatusType.PASS
|
|
|
|
|
|
|
|
if logdata.vehicleType != "ArduCopter":
|
|
|
|
self.result.status = TestResult.StatusType.NA
|
|
|
|
|
|
|
|
# TODO: implement copter test for unbalanced or twisted copter frame
|