Skip to content

Commit a6295e3

Browse files
committed
Merge pull request #108 from diydrones/revert-107-Issue102-MOT_ARM-warnings
Revert "Issue102-Remove Warnings from MOT_ARMED"
2 parents 3c1f5d3 + 7814c8a commit a6295e3

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

AMP Log Analiser x1.v12.suo

-1 KB
Binary file not shown.

AMP Log Analiser x1/Classes/modPARAM_Checks.vb

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,32 @@
1414
'and advise that if the Motors do not spin on Arming then increase the
1515
'Motor Spin Arm upto a Max of Throttle Min.
1616
If PARM_THR_MIN <> 99 Or PARM_MOT_SPIN_ARMED <> 99 Then
17+
If PARM_MOT_SPIN_ARMED = 70 Then
18+
Call WriteParamHeader()
19+
WriteTextLog("MOT_SPIN_ARMED = " & PARM_MOT_SPIN_ARMED)
20+
WriteTextLog("Advice: If motors do not spin when armed calibrate ESC and then try increasing")
21+
WriteTextLog("the parameter MOT_SPIN_ARMED up from 70 in small increments.")
22+
WriteTextLog("http://ardupilot.com/forum/viewtopic.php?f=25&t=5345&sid=3171087bcf7d84e03491e1845eaa9393")
23+
WriteTextLog(vbNewLine)
24+
End If
25+
If PARM_THR_MIN <> 0 And PARM_MOT_SPIN_ARMED <> 0 Then
26+
If PARM_THR_MIN <> 130 Or PARM_MOT_SPIN_ARMED <> 70 Then
27+
Call WriteParamHeader()
28+
WriteTextLog("THR_MIN = " & PARM_THR_MIN)
29+
WriteTextLog("MOT_SPIN_ARMED = " & PARM_MOT_SPIN_ARMED)
30+
WriteTextLog("Warning: MOT_SPIN_ARMED & THR_MIN parameters have been altered from their defaults.")
31+
WriteTextLog("They should be 70 & 130 respectively unless the motors do not spin when armed.")
32+
WriteTextLog("http://ardupilot.com/forum/viewtopic.php?f=25&t=5345&sid=3171087bcf7d84e03491e1845eaa9393")
33+
WriteTextLog(vbNewLine)
34+
End If
35+
End If
1736
If PARM_THR_MIN <> 0 And PARM_MOT_SPIN_ARMED <> 0 Then
1837
If PARM_MOT_SPIN_ARMED > PARM_THR_MIN Then
1938
Call WriteParamHeader()
2039
WriteTextLog("THR_MIN = " & PARM_THR_MIN)
2140
WriteTextLog("MOT_SPIN_ARMED = " & PARM_MOT_SPIN_ARMED)
2241
WriteTextLog("Warning: MOT_SPIN_ARMED is greater then THR_MIN parameter, this is dangerous!")
42+
WriteTextLog("These parameter should be 70 & 130 respectively unless the motors do not spin when armed.")
2343
WriteTextLog("http://ardupilot.com/forum/viewtopic.php?f=25&t=5345&sid=3171087bcf7d84e03491e1845eaa9393")
2444
WriteTextLog(vbNewLine)
2545
End If

0 commit comments

Comments
 (0)