We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 49d8b4b commit be3885bCopy full SHA for be3885b
MAVProxy/tools/graphs/mavgraphs.xml
@@ -49,6 +49,11 @@
49
<expression>degrees(sqrt(ATTITUDE.roll*ATTITUDE.roll+ATTITUDE.pitch*ATTITUDE.Pitch))</expression>
50
</graph>
51
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
+
57
<graph name='Sensors/Accelerometer/Accelerometers'>
58
<description>Accelerometer Output</description>
59
<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