|
14 | 14 | 'and advise that if the Motors do not spin on Arming then increase the
|
15 | 15 | 'Motor Spin Arm upto a Max of Throttle Min.
|
16 | 16 | 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 |
17 | 36 | If PARM_THR_MIN <> 0 And PARM_MOT_SPIN_ARMED <> 0 Then
|
18 | 37 | If PARM_MOT_SPIN_ARMED > PARM_THR_MIN Then
|
19 | 38 | Call WriteParamHeader()
|
20 | 39 | WriteTextLog("THR_MIN = " & PARM_THR_MIN)
|
21 | 40 | WriteTextLog("MOT_SPIN_ARMED = " & PARM_MOT_SPIN_ARMED)
|
22 | 41 | 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.") |
23 | 43 | WriteTextLog("http://ardupilot.com/forum/viewtopic.php?f=25&t=5345&sid=3171087bcf7d84e03491e1845eaa9393")
|
24 | 44 | WriteTextLog(vbNewLine)
|
25 | 45 | End If
|
|
0 commit comments