mirror of https://github.com/ArduPilot/ardupilot
AP_MotorsMulticopter: fix output_to_motors definition
This commit is contained in:
parent
c5e5b4f783
commit
4dd4d38b9b
|
@ -41,7 +41,7 @@ public:
|
||||||
virtual void output();
|
virtual void output();
|
||||||
|
|
||||||
// output_to_motors - sends commands to the motors
|
// output_to_motors - sends commands to the motors
|
||||||
virtual void output_to_motors(){};
|
virtual void output_to_motors() = 0;
|
||||||
|
|
||||||
// set_yaw_headroom - set yaw headroom (yaw is given at least this amount of pwm)
|
// set_yaw_headroom - set yaw headroom (yaw is given at least this amount of pwm)
|
||||||
void set_yaw_headroom(int16_t pwm) { _yaw_headroom = pwm; }
|
void set_yaw_headroom(int16_t pwm) { _yaw_headroom = pwm; }
|
||||||
|
|
Loading…
Reference in New Issue