Skip to content

Commit

Permalink
AC_AttitudeControl: various suggested cleanup items
Browse files Browse the repository at this point in the history
Co-authored-by: Peter Hall <33176108+IamPete1@users.noreply.github.com>
  • Loading branch information
bnsgeyer and IamPete1 committed May 23, 2024
1 parent f7aad1e commit 2e8b7a4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion libraries/AC_AttitudeControl/AC_AttitudeControl_Heli.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -569,7 +569,8 @@ float AC_AttitudeControl_Heli::get_throttle_boosted(float throttle_in)
float boost_factor = 1.0f / constrain_float(cos_tilt_target, 0.1f, 1.0f);

// angle boost and inverted factor applied about the zero thrust collective
float throttle_out = (throttle_in - ((AP_MotorsHeli&)_motors).get_coll_mid()) * inverted_factor * boost_factor + ((AP_MotorsHeli&)_motors).get_coll_mid();
const float coll_mid = ((AP_MotorsHeli&)_motors).get_coll_mid();
float throttle_out = ((throttle_in - coll_mid) * inverted_factor * boost_factor) + coll_mid;
_angle_boost = constrain_float(throttle_out - throttle_in, -1.0f, 1.0f);
return throttle_out;
}
Expand Down
6 changes: 3 additions & 3 deletions libraries/AC_AttitudeControl/AC_AttitudeControl_Heli.h
Original file line number Diff line number Diff line change
Expand Up @@ -90,10 +90,10 @@ class AC_AttitudeControl_Heli : public AC_AttitudeControl {
void input_thrust_vector_heading(const Vector3f& thrust_vector, float heading_angle_cd, float heading_rate_cds) override;

// enable/disable inverted flight
void set_inverted_flight(bool inverted) override { _inverted_flight = inverted;}
void set_inverted_flight(bool inverted) override { _inverted_flight = inverted; }

// accessor for inverted flight flag
bool get_inverted_flight() override { return _inverted_flight;}
bool get_inverted_flight() override { return _inverted_flight; }

// set the PID notch sample rates
void set_notch_sample_rate(float sample_rate) override;
Expand Down Expand Up @@ -136,7 +136,7 @@ class AC_AttitudeControl_Heli : public AC_AttitudeControl {
float _passthrough_yaw;

// get_roll_trim - angle in centi-degrees to be added to roll angle. Used by helicopter to counter tail rotor thrust in hover
float get_roll_trim_rad() override { return constrain_float(radians(get_roll_trim_cd() * 0.01f), -radians(10.0f),radians(10.0f));}
float get_roll_trim_rad() override { return radians(get_roll_trim_cd() * 0.01); }

// internal variables
float _hover_roll_trim_scalar = 0; // scalar used to suppress Hover Roll Trim
Expand Down

0 comments on commit 2e8b7a4

Please sign in to comment.