2016-02-17 21:25:34 -04:00
|
|
|
#pragma once
|
2013-09-08 21:17:02 -03:00
|
|
|
|
2015-08-11 03:28:41 -03:00
|
|
|
#include <AP_Common/AP_Common.h>
|
2022-03-03 23:29:47 -04:00
|
|
|
#include <AC_PID/AP_PIDInfo.h>
|
2013-09-08 21:17:02 -03:00
|
|
|
|
|
|
|
class AP_SteerController {
|
|
|
|
public:
|
2021-07-20 08:15:06 -03:00
|
|
|
AP_SteerController()
|
2017-12-12 21:06:12 -04:00
|
|
|
{
|
|
|
|
AP_Param::setup_object_defaults(this, var_info);
|
2017-08-30 15:10:44 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Do not allow copies */
|
2022-09-30 06:50:43 -03:00
|
|
|
CLASS_NO_COPY(AP_SteerController);
|
2013-09-08 21:17:02 -03:00
|
|
|
|
|
|
|
/*
|
|
|
|
return a steering servo output from -4500 to 4500 given a
|
2013-10-03 08:54:11 -03:00
|
|
|
desired lateral acceleration rate in m/s/s. Positive lateral
|
|
|
|
acceleration is to the right.
|
2013-09-08 21:17:02 -03:00
|
|
|
*/
|
2013-10-03 08:54:11 -03:00
|
|
|
int32_t get_steering_out_lat_accel(float desired_accel);
|
|
|
|
|
|
|
|
/*
|
|
|
|
return a steering servo output from -4500 to 4500 given a
|
|
|
|
desired yaw rate in degrees/sec. Positive yaw is to the right.
|
|
|
|
*/
|
|
|
|
int32_t get_steering_out_rate(float desired_rate);
|
|
|
|
|
|
|
|
/*
|
|
|
|
return a steering servo output from -4500 to 4500 given a
|
|
|
|
yaw error in centi-degrees
|
|
|
|
*/
|
|
|
|
int32_t get_steering_out_angle_error(int32_t angle_err);
|
2013-09-08 21:17:02 -03:00
|
|
|
|
2013-09-29 20:03:52 -03:00
|
|
|
/*
|
|
|
|
return the steering radius (half diameter). Assumed to be half
|
|
|
|
the P value.
|
|
|
|
*/
|
|
|
|
float get_turn_radius(void) const { return _K_P * 0.5f; }
|
|
|
|
|
2013-09-08 21:17:02 -03:00
|
|
|
void reset_I();
|
|
|
|
|
|
|
|
static const struct AP_Param::GroupInfo var_info[];
|
|
|
|
|
2022-03-03 23:29:47 -04:00
|
|
|
const class AP_PIDInfo& get_pid_info(void) const { return _pid_info; }
|
2015-06-08 08:08:14 -03:00
|
|
|
|
2016-07-14 04:49:13 -03:00
|
|
|
void set_reverse(bool reverse) {
|
|
|
|
_reverse = reverse;
|
|
|
|
}
|
|
|
|
|
2022-09-16 12:12:11 -03:00
|
|
|
// Returns true if controller has been run recently
|
|
|
|
bool active() const;
|
|
|
|
|
2013-09-08 21:17:02 -03:00
|
|
|
private:
|
2017-08-30 15:10:44 -03:00
|
|
|
AP_Float _tau;
|
2015-06-08 08:08:14 -03:00
|
|
|
AP_Float _K_FF;
|
2013-09-08 21:17:02 -03:00
|
|
|
AP_Float _K_P;
|
|
|
|
AP_Float _K_I;
|
|
|
|
AP_Float _K_D;
|
2013-09-29 20:03:52 -03:00
|
|
|
AP_Float _minspeed;
|
2013-09-08 21:17:02 -03:00
|
|
|
AP_Int16 _imax;
|
|
|
|
uint32_t _last_t;
|
|
|
|
float _last_out;
|
|
|
|
|
2016-12-13 21:47:22 -04:00
|
|
|
AP_Float _deratespeed;
|
|
|
|
AP_Float _deratefactor;
|
|
|
|
AP_Float _mindegree;
|
|
|
|
|
2022-03-03 23:29:47 -04:00
|
|
|
AP_PIDInfo _pid_info {};
|
2013-09-08 21:17:02 -03:00
|
|
|
|
2016-07-14 04:49:13 -03:00
|
|
|
bool _reverse;
|
2013-09-08 21:17:02 -03:00
|
|
|
};
|