Skip to content

Commit be3885b

Browse files
committed
graphs: add Attitude/Circular Angle Error
1 parent 49d8b4b commit be3885b

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Diff for: MAVProxy/tools/graphs/mavgraphs.xml

+5
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,11 @@
4949
<expression>degrees(sqrt(ATTITUDE.roll*ATTITUDE.roll+ATTITUDE.pitch*ATTITUDE.Pitch))</expression>
5050
</graph>
5151

52+
<graph name='Attitude/Circular Angle Error'>
53+
<description>Difference between total circular angle, as limited by ANGLE_MAX in Copter, and desired circular angle.</description>
54+
<expression>sqrt(((ATT.Roll-ATT.DesRoll)**2)+((ATT.Pitch-ATT.DesPitch)**2))</expression>
55+
</graph>
56+
5257
<graph name='Sensors/Accelerometer/Accelerometers'>
5358
<description>Accelerometer Output</description>
5459
<expression>RAW_IMU.xacc*9.81*0.001 RAW_IMU.yacc*9.81*0.001 RAW_IMU.zacc*9.81*0.001 gravity(RAW_IMU)</expression>

0 commit comments

Comments
 (0)