mirror of https://github.com/ArduPilot/ardupilot
AP_Motors: Heli: dual and quad: remove un-needed override methods
This commit is contained in:
parent
fadedbbb47
commit
b8114da102
|
@ -50,12 +50,6 @@ public:
|
|||
// calculate_armed_scalars - recalculates scalars that can change while armed
|
||||
void calculate_armed_scalars() override;
|
||||
|
||||
// has_flybar - returns true if we have a mechical flybar
|
||||
bool has_flybar() const override { return AP_MOTORS_HELI_NOFLYBAR; }
|
||||
|
||||
// supports_yaw_passthrought - returns true if we support yaw passthrough
|
||||
bool supports_yaw_passthrough() const override { return false; }
|
||||
|
||||
// servo_test - move servos through full range of movement
|
||||
void servo_test() override;
|
||||
|
||||
|
|
|
@ -37,12 +37,6 @@ public:
|
|||
// calculate_armed_scalars - recalculates scalars that can change while armed
|
||||
void calculate_armed_scalars() override;
|
||||
|
||||
// has_flybar - returns true if we have a mechanical flybar
|
||||
bool has_flybar() const override { return AP_MOTORS_HELI_NOFLYBAR; }
|
||||
|
||||
// supports_yaw_passthrought - returns true if we support yaw passthrough
|
||||
bool supports_yaw_passthrough() const override { return false; }
|
||||
|
||||
// servo_test - move servos through full range of movement
|
||||
void servo_test() override;
|
||||
|
||||
|
|
Loading…
Reference in New Issue