123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- #include "Sub.h"
- #if POSHOLD_ENABLED == ENABLED
- bool Sub::poshold_init()
- {
-
- if (!position_ok()) {
- return false;
- }
-
- pos_control.set_max_speed_z(-get_pilot_speed_dn(), g.pilot_speed_up);
- pos_control.set_max_accel_z(g.pilot_accel_z);
-
- pos_control.set_alt_target(inertial_nav.get_altitude());
- pos_control.set_desired_velocity_z(inertial_nav.get_velocity_z());
-
-
- loiter_nav.clear_pilot_desired_acceleration();
- loiter_nav.init_target();
- last_pilot_heading = ahrs.yaw_sensor;
- return true;
- }
- void Sub::poshold_run()
- {
- uint32_t tnow = AP_HAL::millis();
-
- if (!motors.armed()) {
- motors.set_desired_spool_state(AP_Motors::DesiredSpoolState::GROUND_IDLE);
- loiter_nav.clear_pilot_desired_acceleration();
- loiter_nav.init_target();
- attitude_control.set_throttle_out(0,true,g.throttle_filt);
- attitude_control.relax_attitude_controllers();
- pos_control.relax_alt_hold_controllers(motors.get_throttle_hover());
- return;
- }
-
- motors.set_desired_spool_state(AP_Motors::DesiredSpoolState::THROTTLE_UNLIMITED);
-
- loiter_nav.update();
-
-
- float pilot_lateral = channel_lateral->norm_input();
- float pilot_forward = channel_forward->norm_input();
- float lateral_out = 0;
- float forward_out = 0;
-
- if (fabsf(pilot_lateral) > 0.1 || fabsf(pilot_forward) > 0.1) {
- lateral_out = pilot_lateral;
- forward_out = pilot_forward;
- loiter_nav.clear_pilot_desired_acceleration();
- loiter_nav.init_target();
- } else {
- translate_wpnav_rp(lateral_out, forward_out);
- }
- motors.set_lateral(lateral_out);
- motors.set_forward(forward_out);
-
-
-
- float target_yaw_rate = get_pilot_desired_yaw_rate(channel_yaw->get_control_in());
-
-
- float target_roll, target_pitch;
- get_pilot_desired_lean_angles(channel_roll->get_control_in(), channel_pitch->get_control_in(), target_roll, target_pitch, aparm.angle_max);
-
- if (!is_zero(target_yaw_rate)) {
- attitude_control.input_euler_angle_roll_pitch_euler_rate_yaw(target_roll, target_pitch, target_yaw_rate);
- last_pilot_heading = ahrs.yaw_sensor;
- last_pilot_yaw_input_ms = tnow;
- } else {
-
-
- if (tnow < last_pilot_yaw_input_ms + 250) {
- target_yaw_rate = 0;
-
- attitude_control.input_euler_angle_roll_pitch_euler_rate_yaw(target_roll, target_pitch, target_yaw_rate);
- last_pilot_heading = ahrs.yaw_sensor;
- } else {
- attitude_control.input_euler_angle_roll_pitch_yaw(target_roll, target_pitch, last_pilot_heading, true);
- }
- }
-
-
-
- float target_climb_rate = get_pilot_desired_climb_rate(channel_throttle->get_control_in());
- target_climb_rate = constrain_float(target_climb_rate, -get_pilot_speed_dn(), g.pilot_speed_up);
-
- if (ap.at_bottom) {
- pos_control.relax_alt_hold_controllers(motors.get_throttle_hover());
- pos_control.set_alt_target(inertial_nav.get_altitude() + 10.0f);
- } else {
- pos_control.set_alt_target_from_climb_rate_ff(target_climb_rate, G_Dt, false);
- }
- pos_control.update_z_controller();
- }
- #endif
|