mirror of https://github.com/ArduPilot/ardupilot
Tools: added test for InertialLabs EAHRS
This commit is contained in:
parent
38960a3db2
commit
59ec0a6b56
|
@ -0,0 +1,7 @@
|
|||
QGC WPL 110
|
||||
0 0 0 16 0.000000 0.000000 0.000000 0.000000 -35.363262 149.165237 584.090027 1
|
||||
1 0 3 22 0.000000 0.000000 0.000000 0.000000 -35.361553 149.163956 20.000000 1
|
||||
2 0 3 16 0.000000 0.000000 0.000000 0.000000 -35.364540 149.162857 50.000000 1
|
||||
3 0 3 16 0.000000 0.000000 0.000000 0.000000 -35.367333 149.163164 28.000000 1
|
||||
4 0 3 16 0.000000 0.000000 0.000000 0.000000 -35.366814 149.165878 28.000000 1
|
||||
5 0 3 21 0.000000 0.000000 0.000000 1.000000 -35.362947 149.165179 0.000000 1
|
|
@ -3279,6 +3279,10 @@ class AutoTestPlane(vehicle_test_suite.TestSuite):
|
|||
'''Test MicroStrain EAHRS series 7 support'''
|
||||
self.fly_external_AHRS("MicroStrain7", 7, "ap1.txt")
|
||||
|
||||
def InertialLabsEAHRS(self):
|
||||
'''Test InertialLabs EAHRS support'''
|
||||
self.fly_external_AHRS("ILabs", 5, "ap1.txt")
|
||||
|
||||
def get_accelvec(self, m):
|
||||
return Vector3(m.xacc, m.yacc, m.zacc) * 0.001 * 9.81
|
||||
|
||||
|
@ -5358,6 +5362,7 @@ class AutoTestPlane(vehicle_test_suite.TestSuite):
|
|||
self.VectorNavEAHRS,
|
||||
self.MicroStrainEAHRS5,
|
||||
self.MicroStrainEAHRS7,
|
||||
self.InertialLabsEAHRS,
|
||||
self.Deadreckoning,
|
||||
self.DeadreckoningNoAirSpeed,
|
||||
self.EKFlaneswitch,
|
||||
|
|
Loading…
Reference in New Issue