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.
20 lines
530 B
20 lines
530 B
from LogAnalyzer import Test,TestResult |
|
import DataflashLog |
|
|
|
|
|
class TestBalanceTwist(Test): |
|
'''test for badly unbalanced copter, including yaw twist''' |
|
|
|
def __init__(self): |
|
Test.__init__(self) |
|
self.name = "Balance/Twist" |
|
|
|
def run(self, logdata, verbose): |
|
self.result = TestResult() |
|
self.result.status = TestResult.StatusType.GOOD |
|
|
|
if logdata.vehicleType != "ArduCopter": |
|
self.result.status = TestResult.StatusType.NA |
|
return |
|
|
|
# TODO: implement copter test for unbalanced or twisted copter frame |