|
|
|
@@ -54,31 +54,22 @@
|
|
|
|
|
#include "pid.h"
|
|
|
|
|
#include <arch/board/up_hrt.h>
|
|
|
|
|
|
|
|
|
|
#define CONTROL_PID_ATTITUDE_INTERVAL 5e-3f
|
|
|
|
|
#define MAX_MOTOR_COUNT 16
|
|
|
|
|
|
|
|
|
|
void control_attitude(int ardrone_write, const struct vehicle_attitude_setpoint_s *att_sp, const struct vehicle_attitude_s *att, const struct vehicle_status_s *status)
|
|
|
|
|
void multirotor_control_attitude(const struct vehicle_attitude_setpoint_s *att_sp, const struct vehicle_attitude_s *att, const struct vehicle_status_s *status,
|
|
|
|
|
bool verbose, float* roll_output, float* pitch_output, float* yaw_output, float* thrust_output)
|
|
|
|
|
{
|
|
|
|
|
const unsigned int motor_count = 4;
|
|
|
|
|
static uint64_t last_run = 0;
|
|
|
|
|
const float deltaT = (hrt_absolute_time() - last_run) / 1000000.0f;
|
|
|
|
|
last_run = hrt_absolute_time();
|
|
|
|
|
|
|
|
|
|
static int motor_skip_counter = 0;
|
|
|
|
|
|
|
|
|
|
static PID_t yaw_pos_controller;
|
|
|
|
|
static PID_t yaw_speed_controller;
|
|
|
|
|
static PID_t nick_controller;
|
|
|
|
|
static PID_t pitch_controller;
|
|
|
|
|
static PID_t roll_controller;
|
|
|
|
|
|
|
|
|
|
const float min_thrust = 0.02f; /**< 2% minimum thrust */
|
|
|
|
|
const float max_thrust = 1.0f; /**< 100% max thrust */
|
|
|
|
|
const float scaling = 512.0f; /**< 100% thrust equals a value of 512 */
|
|
|
|
|
|
|
|
|
|
const float min_gas = min_thrust * scaling; /**< value range sent to motors, minimum */
|
|
|
|
|
const float max_gas = max_thrust * scaling; /**< value range sent to motors, maximum */
|
|
|
|
|
|
|
|
|
|
/* initialize all fields to zero */
|
|
|
|
|
static uint16_t motor_pwm[MAX_MOTOR_COUNT];
|
|
|
|
|
static float motor_calc[MAX_MOTOR_COUNT];
|
|
|
|
|
|
|
|
|
|
static float pid_yawpos_lim;
|
|
|
|
|
static float pid_yawspeed_lim;
|
|
|
|
|
static float pid_att_lim;
|
|
|
|
@@ -102,7 +93,7 @@ void control_attitude(int ardrone_write, const struct vehicle_attitude_setpoint_
|
|
|
|
|
global_data_parameter_storage->pm.param_values[PARAM_PID_YAWSPEED_AWU],
|
|
|
|
|
PID_MODE_DERIVATIV_CALC, 155);
|
|
|
|
|
|
|
|
|
|
pid_init(&nick_controller,
|
|
|
|
|
pid_init(&pitch_controller,
|
|
|
|
|
global_data_parameter_storage->pm.param_values[PARAM_PID_ATT_P],
|
|
|
|
|
global_data_parameter_storage->pm.param_values[PARAM_PID_ATT_I],
|
|
|
|
|
global_data_parameter_storage->pm.param_values[PARAM_PID_ATT_D],
|
|
|
|
@@ -137,7 +128,7 @@ void control_attitude(int ardrone_write, const struct vehicle_attitude_setpoint_
|
|
|
|
|
global_data_parameter_storage->pm.param_values[PARAM_PID_YAWSPEED_D],
|
|
|
|
|
global_data_parameter_storage->pm.param_values[PARAM_PID_YAWSPEED_AWU]);
|
|
|
|
|
|
|
|
|
|
pid_set_parameters(&nick_controller,
|
|
|
|
|
pid_set_parameters(&pitch_controller,
|
|
|
|
|
global_data_parameter_storage->pm.param_values[PARAM_PID_ATT_P],
|
|
|
|
|
global_data_parameter_storage->pm.param_values[PARAM_PID_ATT_I],
|
|
|
|
|
global_data_parameter_storage->pm.param_values[PARAM_PID_ATT_D],
|
|
|
|
@@ -156,13 +147,13 @@ void control_attitude(int ardrone_write, const struct vehicle_attitude_setpoint_
|
|
|
|
|
|
|
|
|
|
/*Calculate Controllers*/
|
|
|
|
|
//control Nick
|
|
|
|
|
float nick_control = pid_calculate(&nick_controller, att_sp->pitch_body + global_data_parameter_storage->pm.param_values[PARAM_ATT_YOFFSET],
|
|
|
|
|
att->pitch, att->pitchspeed, CONTROL_PID_ATTITUDE_INTERVAL);
|
|
|
|
|
float pitch_control = pid_calculate(&pitch_controller, att_sp->pitch_body + global_data_parameter_storage->pm.param_values[PARAM_ATT_YOFFSET],
|
|
|
|
|
att->pitch, att->pitchspeed, deltaT);
|
|
|
|
|
//control Roll
|
|
|
|
|
float roll_control = pid_calculate(&roll_controller, att_sp->roll_body + global_data_parameter_storage->pm.param_values[PARAM_ATT_XOFFSET],
|
|
|
|
|
att->roll, att->rollspeed, CONTROL_PID_ATTITUDE_INTERVAL);
|
|
|
|
|
att->roll, att->rollspeed, deltaT);
|
|
|
|
|
//control Yaw Speed
|
|
|
|
|
float yaw_rate_control = pid_calculate(&yaw_speed_controller, att_sp->yaw_body, att->yawspeed, 0.0f, CONTROL_PID_ATTITUDE_INTERVAL); //attitude_setpoint_bodyframe.z is yaw speed!
|
|
|
|
|
float yaw_rate_control = pid_calculate(&yaw_speed_controller, att_sp->yaw_body, att->yawspeed, 0.0f, deltaT); //attitude_setpoint_bodyframe.z is yaw speed!
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* compensate the vertical loss of thrust
|
|
|
|
@@ -185,27 +176,12 @@ void control_attitude(int ardrone_write, const struct vehicle_attitude_setpoint_
|
|
|
|
|
zcompensation *= 1.0f / cosf(att->pitch);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
float motor_thrust;
|
|
|
|
|
float motor_thrust = 0.0f;
|
|
|
|
|
|
|
|
|
|
// FLYING MODES
|
|
|
|
|
if (status->state_machine == SYSTEM_STATE_MANUAL ||
|
|
|
|
|
status->state_machine == SYSTEM_STATE_GROUND_READY ||
|
|
|
|
|
status->state_machine == SYSTEM_STATE_STABILIZED ||
|
|
|
|
|
status->state_machine == SYSTEM_STATE_AUTO ||
|
|
|
|
|
status->state_machine == SYSTEM_STATE_MISSION_ABORT ||
|
|
|
|
|
status->state_machine == SYSTEM_STATE_EMCY_LANDING) {
|
|
|
|
|
motor_thrust = att_sp->thrust;
|
|
|
|
|
motor_thrust = att_sp->thrust;
|
|
|
|
|
|
|
|
|
|
} else if (status->state_machine == SYSTEM_STATE_EMCY_CUTOFF) {
|
|
|
|
|
/* immediately cut off motors */
|
|
|
|
|
motor_thrust = 0.0f;
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
/* limit motor throttle to zero for an unknown mode */
|
|
|
|
|
motor_thrust = 0.0f;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
printf("mot0: %3.1f\n", motor_thrust);
|
|
|
|
|
//printf("mot0: %3.1f\n", motor_thrust);
|
|
|
|
|
|
|
|
|
|
/* compensate thrust vector for roll / pitch contributions */
|
|
|
|
|
motor_thrust *= zcompensation;
|
|
|
|
@@ -221,14 +197,14 @@ void control_attitude(int ardrone_write, const struct vehicle_attitude_setpoint_
|
|
|
|
|
yaw_speed_controller.saturated = 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (nick_control > pid_att_lim) {
|
|
|
|
|
nick_control = pid_att_lim;
|
|
|
|
|
nick_controller.saturated = 1;
|
|
|
|
|
if (pitch_control > pid_att_lim) {
|
|
|
|
|
pitch_control = pid_att_lim;
|
|
|
|
|
pitch_controller.saturated = 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (nick_control < -pid_att_lim) {
|
|
|
|
|
nick_control = -pid_att_lim;
|
|
|
|
|
nick_controller.saturated = 1;
|
|
|
|
|
if (pitch_control < -pid_att_lim) {
|
|
|
|
|
pitch_control = -pid_att_lim;
|
|
|
|
|
pitch_controller.saturated = 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@@ -242,7 +218,26 @@ void control_attitude(int ardrone_write, const struct vehicle_attitude_setpoint_
|
|
|
|
|
roll_controller.saturated = 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
printf("mot1: %3.1f\n", motor_thrust);
|
|
|
|
|
*roll_output = roll_control;
|
|
|
|
|
*pitch_output = pitch_control;
|
|
|
|
|
*yaw_output = yaw_rate_control;
|
|
|
|
|
*thrust_output = motor_thrust;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ardrone_mixing_and_output(int ardrone_write, float roll_control, float pitch_control, float yaw_control, float motor_thrust, bool verbose) {
|
|
|
|
|
|
|
|
|
|
unsigned int motor_skip_counter = 0;
|
|
|
|
|
|
|
|
|
|
const float min_thrust = 0.02f; /**< 2% minimum thrust */
|
|
|
|
|
const float max_thrust = 1.0f; /**< 100% max thrust */
|
|
|
|
|
const float scaling = 512.0f; /**< 100% thrust equals a value of 512 */
|
|
|
|
|
|
|
|
|
|
const float min_gas = min_thrust * scaling; /**< value range sent to motors, minimum */
|
|
|
|
|
const float max_gas = max_thrust * scaling; /**< value range sent to motors, maximum */
|
|
|
|
|
|
|
|
|
|
/* initialize all fields to zero */
|
|
|
|
|
uint16_t motor_pwm[MAX_MOTOR_COUNT] = {0};
|
|
|
|
|
float motor_calc[MAX_MOTOR_COUNT] = {0};
|
|
|
|
|
|
|
|
|
|
float output_band = 0.0f;
|
|
|
|
|
float band_factor = 0.75f;
|
|
|
|
@@ -263,19 +258,23 @@ void control_attitude(int ardrone_write, const struct vehicle_attitude_setpoint_
|
|
|
|
|
output_band = band_factor * (max_thrust - motor_thrust);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (verbose && motor_skip_counter % 100 == 0) {
|
|
|
|
|
printf("1: mot1: %3.1f band: %3.1f r: %3.1f n: %3.1f y: %3.1f\n", (double)motor_thrust, (double)output_band, (double)roll_control, (double)pitch_control, (double)yaw_control);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//add the yaw, nick and roll components to the basic thrust //TODO:this should be done by the mixer
|
|
|
|
|
|
|
|
|
|
// FRONT (MOTOR 1)
|
|
|
|
|
motor_calc[0] = motor_thrust + (roll_control / 2 + nick_control / 2 - yaw_rate_control);
|
|
|
|
|
motor_calc[0] = motor_thrust + (roll_control / 2 + pitch_control / 2 - yaw_control);
|
|
|
|
|
|
|
|
|
|
// RIGHT (MOTOR 2)
|
|
|
|
|
motor_calc[1] = motor_thrust + (-roll_control / 2 + nick_control / 2 + yaw_rate_control);
|
|
|
|
|
motor_calc[1] = motor_thrust + (-roll_control / 2 + pitch_control / 2 + yaw_control);
|
|
|
|
|
|
|
|
|
|
// BACK (MOTOR 3)
|
|
|
|
|
motor_calc[2] = motor_thrust + (-roll_control / 2 - nick_control / 2 - yaw_rate_control);
|
|
|
|
|
motor_calc[2] = motor_thrust + (-roll_control / 2 - pitch_control / 2 - yaw_control);
|
|
|
|
|
|
|
|
|
|
// LEFT (MOTOR 4)
|
|
|
|
|
motor_calc[3] = motor_thrust + (roll_control / 2 - nick_control / 2 + yaw_rate_control);
|
|
|
|
|
motor_calc[3] = motor_thrust + (roll_control / 2 - pitch_control / 2 + yaw_control);
|
|
|
|
|
|
|
|
|
|
// if we are not in the output band
|
|
|
|
|
if (!(motor_calc[0] < motor_thrust + output_band && motor_calc[0] > motor_thrust - output_band
|
|
|
|
@@ -285,16 +284,20 @@ void control_attitude(int ardrone_write, const struct vehicle_attitude_setpoint_
|
|
|
|
|
|
|
|
|
|
yaw_factor = 0.5f;
|
|
|
|
|
// FRONT (MOTOR 1)
|
|
|
|
|
motor_calc[0] = motor_thrust + (roll_control / 2 + nick_control / 2 - yaw_rate_control * yaw_factor);
|
|
|
|
|
motor_calc[0] = motor_thrust + (roll_control / 2 + pitch_control / 2 - yaw_control * yaw_factor);
|
|
|
|
|
|
|
|
|
|
// RIGHT (MOTOR 2)
|
|
|
|
|
motor_calc[1] = motor_thrust + (-roll_control / 2 + nick_control / 2 + yaw_rate_control * yaw_factor);
|
|
|
|
|
motor_calc[1] = motor_thrust + (-roll_control / 2 + pitch_control / 2 + yaw_control * yaw_factor);
|
|
|
|
|
|
|
|
|
|
// BACK (MOTOR 3)
|
|
|
|
|
motor_calc[2] = motor_thrust + (-roll_control / 2 - nick_control / 2 - yaw_rate_control * yaw_factor);
|
|
|
|
|
motor_calc[2] = motor_thrust + (-roll_control / 2 - pitch_control / 2 - yaw_control * yaw_factor);
|
|
|
|
|
|
|
|
|
|
// LEFT (MOTOR 4)
|
|
|
|
|
motor_calc[3] = motor_thrust + (roll_control / 2 - nick_control / 2 + yaw_rate_control * yaw_factor);
|
|
|
|
|
motor_calc[3] = motor_thrust + (roll_control / 2 - pitch_control / 2 + yaw_control * yaw_factor);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (verbose && motor_skip_counter % 100 == 0) {
|
|
|
|
|
printf("2: m1: %3.1f m2: %3.1f m3: %3.1f m4: %3.1f\n", (double)motor_calc[0], (double)motor_calc[1], (double)motor_calc[2], (double)motor_calc[3]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < 4; i++) {
|
|
|
|
@@ -308,13 +311,21 @@ void control_attitude(int ardrone_write, const struct vehicle_attitude_setpoint_
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (verbose && motor_skip_counter % 100 == 0) {
|
|
|
|
|
printf("3: band lim: m1: %3.1f m2: %3.1f m3: %3.1f m4: %3.1f\n", (double)motor_calc[0], (double)motor_calc[1], (double)motor_calc[2], (double)motor_calc[3]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* set the motor values */
|
|
|
|
|
|
|
|
|
|
/* scale up from 0..1 to 10..512) */
|
|
|
|
|
motor_pwm[0] = (uint16_t) motor_calc[0] * ((float)max_gas - min_gas) + min_gas;
|
|
|
|
|
motor_pwm[1] = (uint16_t) motor_calc[1] * ((float)max_gas - min_gas) + min_gas;
|
|
|
|
|
motor_pwm[2] = (uint16_t) motor_calc[2] * ((float)max_gas - min_gas) + min_gas;
|
|
|
|
|
motor_pwm[3] = (uint16_t) motor_calc[3] * ((float)max_gas - min_gas) + min_gas;
|
|
|
|
|
motor_pwm[0] = (uint16_t) (motor_calc[0] * ((float)max_gas - min_gas) + min_gas);
|
|
|
|
|
motor_pwm[1] = (uint16_t) (motor_calc[1] * ((float)max_gas - min_gas) + min_gas);
|
|
|
|
|
motor_pwm[2] = (uint16_t) (motor_calc[2] * ((float)max_gas - min_gas) + min_gas);
|
|
|
|
|
motor_pwm[3] = (uint16_t) (motor_calc[3] * ((float)max_gas - min_gas) + min_gas);
|
|
|
|
|
|
|
|
|
|
if (verbose && motor_skip_counter % 100 == 0) {
|
|
|
|
|
printf("4: scaled: m1: %d m2: %d m3: %d m4: %d\n", motor_pwm[0], motor_pwm[1], motor_pwm[2], motor_pwm[3]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Keep motors spinning while armed and prevent overflows */
|
|
|
|
|
|
|
|
|
@@ -331,12 +342,8 @@ void control_attitude(int ardrone_write, const struct vehicle_attitude_setpoint_
|
|
|
|
|
motor_pwm[3] = (motor_pwm[3] <= 512) ? motor_pwm[3] : 512;
|
|
|
|
|
|
|
|
|
|
/* send motors via UART */
|
|
|
|
|
if (motor_skip_counter % 5 == 0) {
|
|
|
|
|
if (motor_skip_counter % 50 == 0) printf("mot: %3.1f-%i-%i-%i-%i\n", motor_thrust, motor_pwm[0], motor_pwm[1], motor_pwm[2], motor_pwm[3]);
|
|
|
|
|
uint8_t buf[5] = {1, 2, 3, 4, 5};
|
|
|
|
|
ar_get_motor_packet(buf, motor_pwm[0], motor_pwm[1], motor_pwm[2], motor_pwm[3]);
|
|
|
|
|
write(ardrone_write, buf, sizeof(buf));
|
|
|
|
|
}
|
|
|
|
|
if (verbose && motor_skip_counter % 100 == 0) printf("5: mot: %3.1f-%i-%i-%i-%i\n\n", (double)motor_thrust, motor_pwm[0], motor_pwm[1], motor_pwm[2], motor_pwm[3]);
|
|
|
|
|
ardrone_write_motor_commands(ardrone_write, motor_pwm[0], motor_pwm[1], motor_pwm[2], motor_pwm[3]);
|
|
|
|
|
|
|
|
|
|
motor_skip_counter++;
|
|
|
|
|
}
|
|
|
|
|