Skip to content

Commit 3c1f5d3

Browse files
committed
Merge pull request #107 from diydrones/Issue102-MOT_ARM-warnings
Issue102-Remove Warnings from MOT_ARMED
2 parents 33b38f3 + fc43049 commit 3c1f5d3

File tree

2 files changed

+0
-20
lines changed

2 files changed

+0
-20
lines changed

AMP Log Analiser x1.v12.suo

1 KB
Binary file not shown.

AMP Log Analiser x1/Classes/modPARAM_Checks.vb

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -14,32 +14,12 @@
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
3617
If PARM_THR_MIN <> 0 And PARM_MOT_SPIN_ARMED <> 0 Then
3718
If PARM_MOT_SPIN_ARMED > PARM_THR_MIN Then
3819
Call WriteParamHeader()
3920
WriteTextLog("THR_MIN = " & PARM_THR_MIN)
4021
WriteTextLog("MOT_SPIN_ARMED = " & PARM_MOT_SPIN_ARMED)
4122
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.")
4323
WriteTextLog("http://ardupilot.com/forum/viewtopic.php?f=25&t=5345&sid=3171087bcf7d84e03491e1845eaa9393")
4424
WriteTextLog(vbNewLine)
4525
End If

0 commit comments

Comments
 (0)