2013-05-29 20:53:02 -03:00
|
|
|
// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*-
|
2016-02-17 21:25:34 -04:00
|
|
|
#pragma once
|
2012-08-21 23:08:14 -03:00
|
|
|
|
2015-08-11 03:28:41 -03:00
|
|
|
#include <AP_AHRS/AP_AHRS.h>
|
|
|
|
#include <AP_Common/AP_Common.h>
|
|
|
|
#include <AP_Vehicle/AP_Vehicle.h>
|
|
|
|
#include "AP_AutoTune.h"
|
|
|
|
#include <DataFlash/DataFlash.h>
|
|
|
|
#include <AP_Math/AP_Math.h>
|
2012-08-21 23:08:14 -03:00
|
|
|
|
|
|
|
class AP_RollController {
|
|
|
|
public:
|
2016-08-07 21:47:59 -03:00
|
|
|
AP_RollController(AP_AHRS &ahrs, const AP_Vehicle::FixedWing &parms, DataFlash_Class &_dataflash) :
|
|
|
|
aparm(parms),
|
2014-04-13 09:11:57 -03:00
|
|
|
autotune(gains, AP_AutoTune::AUTOTUNE_ROLL, parms, _dataflash),
|
2013-08-14 01:56:18 -03:00
|
|
|
_ahrs(ahrs)
|
2013-07-17 22:57:11 -03:00
|
|
|
{
|
2012-12-12 17:41:12 -04:00
|
|
|
AP_Param::setup_object_defaults(this, var_info);
|
|
|
|
}
|
|
|
|
|
2013-08-02 08:54:48 -03:00
|
|
|
int32_t get_rate_out(float desired_rate, float scaler);
|
|
|
|
int32_t get_servo_out(int32_t angle_err, float scaler, bool disable_integrator);
|
2012-08-21 23:08:14 -03:00
|
|
|
|
|
|
|
void reset_I();
|
|
|
|
|
2014-04-12 01:11:33 -03:00
|
|
|
void autotune_start(void) { autotune.start(); }
|
|
|
|
void autotune_restore(void) { autotune.stop(); }
|
|
|
|
|
2015-05-22 18:39:38 -03:00
|
|
|
const DataFlash_Class::PID_Info& get_pid_info(void) const { return _pid_info; }
|
|
|
|
|
2012-08-21 23:08:14 -03:00
|
|
|
static const struct AP_Param::GroupInfo var_info[];
|
|
|
|
|
2016-04-16 07:37:33 -03:00
|
|
|
|
|
|
|
// tuning accessors
|
|
|
|
void kP(float v) { gains.P.set(v); }
|
|
|
|
void kI(float v) { gains.I.set(v); }
|
|
|
|
void kD(float v) { gains.D.set(v); }
|
|
|
|
void kFF(float v) { gains.FF.set(v); }
|
2016-05-06 01:43:25 -03:00
|
|
|
|
|
|
|
AP_Float &kP(void) { return gains.P; }
|
|
|
|
AP_Float &kI(void) { return gains.I; }
|
|
|
|
AP_Float &kD(void) { return gains.D; }
|
|
|
|
AP_Float &kFF(void) { return gains.FF; }
|
2016-04-16 07:37:33 -03:00
|
|
|
|
2012-08-21 23:08:14 -03:00
|
|
|
private:
|
2013-09-12 22:46:22 -03:00
|
|
|
const AP_Vehicle::FixedWing &aparm;
|
2014-04-12 01:11:33 -03:00
|
|
|
AP_AutoTune::ATGains gains;
|
|
|
|
AP_AutoTune autotune;
|
2012-08-21 23:08:14 -03:00
|
|
|
uint32_t _last_t;
|
2013-04-23 16:22:17 -03:00
|
|
|
float _last_out;
|
2012-08-21 23:08:14 -03:00
|
|
|
|
2015-05-22 18:39:38 -03:00
|
|
|
DataFlash_Class::PID_Info _pid_info;
|
2012-08-21 23:08:14 -03:00
|
|
|
|
2013-08-02 08:54:48 -03:00
|
|
|
int32_t _get_rate_out(float desired_rate, float scaler, bool disable_integrator);
|
2013-07-10 10:25:06 -03:00
|
|
|
|
2013-08-14 01:56:18 -03:00
|
|
|
AP_AHRS &_ahrs;
|
2012-08-21 23:08:14 -03:00
|
|
|
|
|
|
|
};
|