Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

AP_Motors: Heli: dual and quad: remove un-needed override methods #25604

Merged
merged 1 commit into from
Dec 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions libraries/AP_Motors/AP_MotorsHeli_Dual.h
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,6 @@ class AP_MotorsHeli_Dual : public AP_MotorsHeli {
// 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;

Expand Down
6 changes: 0 additions & 6 deletions libraries/AP_Motors/AP_MotorsHeli_Quad.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,6 @@ class AP_MotorsHeli_Quad : public AP_MotorsHeli {
// 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;

Expand Down