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_ROLL_CONTROLLER_H__
|
|
|
|
#define __AP_ROLL_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>
|
2013-07-17 22:57:11 -03:00
|
|
|
#include <math.h>
|
2012-08-21 23:08:14 -03:00
|
|
|
|
|
|
|
class AP_RollController {
|
|
|
|
public:
|
2013-09-12 22:46:22 -03:00
|
|
|
AP_RollController(AP_AHRS &ahrs, const AP_Vehicle::FixedWing &parms) :
|
2013-08-14 01:56:18 -03:00
|
|
|
aparm(parms),
|
|
|
|
_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();
|
|
|
|
|
|
|
|
static const struct AP_Param::GroupInfo var_info[];
|
|
|
|
|
|
|
|
private:
|
2013-09-12 22:46:22 -03:00
|
|
|
const AP_Vehicle::FixedWing &aparm;
|
2013-05-13 08:10:55 -03:00
|
|
|
AP_Float _tau;
|
|
|
|
AP_Float _K_P;
|
|
|
|
AP_Float _K_I;
|
|
|
|
AP_Float _K_D;
|
2012-08-21 23:08:14 -03:00
|
|
|
AP_Int16 _max_rate;
|
2013-06-11 05:35:31 -03:00
|
|
|
AP_Int16 _imax;
|
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
|
|
|
|
|
|
|
float _integrator;
|
|
|
|
|
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
|
|
|
|
|
|
|
};
|
|
|
|
|
2012-10-12 14:53:42 -03:00
|
|
|
#endif // __AP_ROLL_CONTROLLER_H__
|