2013-05-29 20:53:02 -03:00
|
|
|
// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*-
|
2012-08-21 23:08:14 -03:00
|
|
|
|
2012-10-12 14:53:42 -03:00
|
|
|
#ifndef __AP_PITCH_CONTROLLER_H__
|
|
|
|
#define __AP_PITCH_CONTROLLER_H__
|
2012-08-21 23:08:14 -03:00
|
|
|
|
|
|
|
#include <AP_AHRS.h>
|
|
|
|
#include <AP_Common.h>
|
2013-09-12 22:46:22 -03:00
|
|
|
#include <AP_Vehicle.h>
|
2014-04-12 01:11:33 -03:00
|
|
|
#include <AP_AutoTune.h>
|
2014-04-12 05:21:50 -03:00
|
|
|
#include <DataFlash.h>
|
|
|
|
#include <AP_Math.h>
|
2012-08-21 23:08:14 -03:00
|
|
|
|
|
|
|
class AP_PitchController {
|
|
|
|
public:
|
2014-04-12 05:21:50 -03:00
|
|
|
AP_PitchController(AP_AHRS &ahrs, const AP_Vehicle::FixedWing &parms, DataFlash_Class &_dataflash) :
|
2013-08-14 01:56:18 -03:00
|
|
|
aparm(parms),
|
2014-04-13 09:11:57 -03:00
|
|
|
autotune(gains, AP_AutoTune::AUTOTUNE_PITCH, 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-07-17 22:57:11 -03:00
|
|
|
int32_t get_rate_out(float desired_rate, float scaler);
|
2013-08-02 08:54:48 -03:00
|
|
|
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(); }
|
|
|
|
|
2012-08-21 23:08:14 -03:00
|
|
|
static const struct AP_Param::GroupInfo var_info[];
|
|
|
|
|
|
|
|
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
|
|
|
AP_Int16 _max_rate_neg;
|
|
|
|
AP_Float _roll_ff;
|
|
|
|
uint32_t _last_t;
|
2013-04-23 16:22:17 -03:00
|
|
|
float _last_out;
|
2012-08-21 23:08:14 -03:00
|
|
|
|
|
|
|
float _integrator;
|
2013-07-10 10:25:06 -03:00
|
|
|
|
2013-08-02 08:54:48 -03:00
|
|
|
int32_t _get_rate_out(float desired_rate, float scaler, bool disable_integrator, float aspeed);
|
2013-07-17 22:57:11 -03:00
|
|
|
float _get_coordination_rate_offset(float &aspeed, bool &inverted) const;
|
2012-08-21 23:08:14 -03:00
|
|
|
|
2013-08-14 01:56:18 -03:00
|
|
|
AP_AHRS &_ahrs;
|
2012-08-21 23:08:14 -03:00
|
|
|
|
|
|
|
};
|
|
|
|
|
2012-10-12 14:53:42 -03:00
|
|
|
#endif // __AP_PITCH_CONTROLLER_H__
|