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_YAW_CONTROLLER_H__
|
|
|
|
#define __AP_YAW_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_YawController {
|
|
|
|
public:
|
2013-09-12 22:46:22 -03:00
|
|
|
AP_YawController(AP_AHRS &ahrs, const AP_Vehicle::FixedWing &parms) :
|
2013-08-14 01:56:18 -03:00
|
|
|
aparm(parms),
|
|
|
|
_ahrs(ahrs)
|
2013-01-01 22:53:26 -04: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_servo_out(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-04-23 08:02:18 -03:00
|
|
|
AP_Float _K_A;
|
|
|
|
AP_Float _K_I;
|
|
|
|
AP_Float _K_D;
|
|
|
|
AP_Float _K_FF;
|
2013-07-15 20:42:54 -03:00
|
|
|
AP_Int16 _imax;
|
2012-08-21 23:08:14 -03:00
|
|
|
uint32_t _last_t;
|
|
|
|
float _last_error;
|
2013-04-23 16:22:17 -03:00
|
|
|
float _last_out;
|
|
|
|
float _last_rate_hp_out;
|
|
|
|
float _last_rate_hp_in;
|
|
|
|
float _K_D_last;
|
2012-08-21 23:08:14 -03:00
|
|
|
|
|
|
|
float _integrator;
|
|
|
|
|
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_YAW_CONTROLLER_H__
|