ardupilot/ArduCopter/control_drift.pde

85 lines
2.6 KiB
Plaintext
Raw Normal View History

2014-01-28 04:31:20 -04:00
/// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*-
/*
* control_drift.pde - init and run calls for drift flight mode
*/
#ifndef DRIFT_SPEEDGAIN
2014-03-30 11:00:23 -03:00
# define DRIFT_SPEEDGAIN 14.0f
#endif
#ifndef DRIFT_THR_GAIN
# define DRIFT_THR_GAIN 2.0f
2014-01-28 04:31:20 -04:00
#endif
// drift_init - initialise drift controller
static bool drift_init(bool ignore_checks)
{
if (GPS_ok() || ignore_checks) {
return true;
}else{
return false;
}
}
// drift_run - runs the drift controller
// should be called at 100hz or more
static void drift_run()
{
static float breaker = 0.0;
int16_t target_roll, target_pitch;
float target_yaw_rate;
2014-02-11 09:32:59 -04:00
int16_t pilot_throttle_scaled;
2014-01-28 04:31:20 -04:00
2014-03-30 11:00:23 -03:00
// if not armed or landed and throttle at zero, set throttle to zero and exit immediately
if(!motors.armed() || (ap.land_complete && g.rc_3.control_in <= 0)) {
2014-01-28 04:31:20 -04:00
attitude_control.init_targets();
attitude_control.set_throttle_out(0, false);
return;
}
// convert pilot input to lean angles
get_pilot_desired_lean_angles(g.rc_1.control_in, g.rc_2.control_in, target_roll, target_pitch);
2014-02-11 09:32:59 -04:00
// get pilot's desired throttle
pilot_throttle_scaled = get_pilot_desired_throttle(g.rc_3.control_in);
2014-01-28 04:31:20 -04:00
// Grab inertial velocity
Vector3f vel = inertial_nav.get_velocity();
// rotate roll, pitch input from north facing to vehicle's perspective
float roll_vel = vel.y * ahrs.cos_yaw() - vel.x * ahrs.sin_yaw(); // body roll vel
float pitch_vel = vel.y * ahrs.sin_yaw() + vel.x * ahrs.cos_yaw(); // body pitch vel
2014-01-28 04:31:20 -04:00
float pitch_vel2 = min(fabs(pitch_vel), 800);
// simple gain scheduling for yaw input
target_yaw_rate = (float)(target_roll/2) * (1.0 - (pitch_vel2 / 2400.0));
roll_vel = constrain_float(roll_vel, -322, 322);
pitch_vel = constrain_float(pitch_vel, -322, 322);
// always limit roll
target_roll = roll_vel * -DRIFT_SPEEDGAIN;
// If we let go of sticks, bring us to a stop
if(target_pitch == 0){
// .14/ (.03 * 100) = 4.6 seconds till full breaking
breaker += .03;
breaker = min(breaker, DRIFT_SPEEDGAIN);
target_pitch = pitch_vel * breaker;
}else{
breaker = 0.0;
}
2014-03-30 11:00:23 -03:00
// throttle assist
float thr_assist = 1.0 - ((float)abs(pilot_throttle_scaled - 500) / 200.0);
thr_assist = max(thr_assist, 0) * -DRIFT_THR_GAIN * vel.z;
2014-01-28 04:31:20 -04:00
// call attitude controller
attitude_control.angle_ef_roll_pitch_rate_ef_yaw_smooth(target_roll, target_pitch, target_yaw_rate, get_smoothing_gain());
2014-02-11 09:32:59 -04:00
// output pilot's throttle with angle boost
2014-03-30 11:00:23 -03:00
attitude_control.set_throttle_out(pilot_throttle_scaled + thr_assist, true);
2014-01-28 04:31:20 -04:00
}