mirror of https://github.com/ArduPilot/ardupilot
MotorsMulti: add throttle_max accessor
This commit is contained in:
parent
b58cc7ea8d
commit
1024790633
|
@ -62,6 +62,7 @@ public:
|
||||||
// returns warning throttle
|
// returns warning throttle
|
||||||
float get_throttle_warn() const { return rel_pwm_to_thr_range(_spin_when_armed); }
|
float get_throttle_warn() const { return rel_pwm_to_thr_range(_spin_when_armed); }
|
||||||
|
|
||||||
|
int16_t throttle_max() const { return _max_throttle; }
|
||||||
int16_t throttle_min() const { return rel_pwm_to_thr_range(_min_throttle); }
|
int16_t throttle_min() const { return rel_pwm_to_thr_range(_min_throttle); }
|
||||||
|
|
||||||
// set_throttle_range - sets the minimum throttle that will be sent to the engines when they're not off (i.e. to prevents issues with some motors spinning and some not at very low throttle)
|
// set_throttle_range - sets the minimum throttle that will be sent to the engines when they're not off (i.e. to prevents issues with some motors spinning and some not at very low throttle)
|
||||||
|
|
Loading…
Reference in New Issue