2010-10-03 22:39:23 +02:00
|
|
|
/**
|
|
|
|
******************************************************************************
|
|
|
|
* @addtogroup OpenPilotModules OpenPilot Modules
|
|
|
|
* @{
|
|
|
|
* @addtogroup StabilizationModule Stabilization Module
|
|
|
|
* @brief Stabilization PID loops in an airframe type independent manner
|
|
|
|
* @note This object updates the @ref ActuatorDesired "Actuator Desired" based on the
|
|
|
|
* PID loops on the @ref AttitudeDesired "Attitude Desired" and @ref AttitudeActual "Attitude Actual"
|
|
|
|
* @{
|
|
|
|
*
|
|
|
|
* @file stabilization.c
|
|
|
|
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2010.
|
|
|
|
* @brief Attitude stabilization module.
|
|
|
|
*
|
|
|
|
* @see The GNU Public License (GPL) Version 3
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
/*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
|
|
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
|
|
* for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "openpilot.h"
|
|
|
|
#include "stabilization.h"
|
2010-10-08 17:38:23 +02:00
|
|
|
#include "stabilizationsettings.h"
|
2010-10-03 22:39:23 +02:00
|
|
|
#include "actuatordesired.h"
|
2010-10-24 22:00:02 +02:00
|
|
|
#include "ratedesired.h"
|
2011-03-02 02:25:27 +01:00
|
|
|
#include "stabilizationdesired.h"
|
2010-10-03 22:39:23 +02:00
|
|
|
#include "attitudeactual.h"
|
2011-12-12 20:28:04 +01:00
|
|
|
#include "gyros.h"
|
2011-05-03 18:04:44 +02:00
|
|
|
#include "flightstatus.h"
|
|
|
|
#include "manualcontrol.h" // Just to get a macro
|
2011-03-02 02:25:34 +01:00
|
|
|
#include "CoordinateConversions.h"
|
2010-10-03 22:39:23 +02:00
|
|
|
|
|
|
|
// Private constants
|
2011-01-14 01:51:54 +01:00
|
|
|
#define MAX_QUEUE_SIZE 1
|
2011-02-02 09:57:34 +01:00
|
|
|
|
|
|
|
#if defined(PIOS_STABILIZATION_STACK_SIZE)
|
|
|
|
#define STACK_SIZE_BYTES PIOS_STABILIZATION_STACK_SIZE
|
|
|
|
#else
|
2011-01-09 01:03:19 +01:00
|
|
|
#define STACK_SIZE_BYTES 724
|
2011-02-02 09:57:34 +01:00
|
|
|
#endif
|
|
|
|
|
2010-10-03 22:39:23 +02:00
|
|
|
#define TASK_PRIORITY (tskIDLE_PRIORITY+4)
|
2010-10-24 22:00:05 +02:00
|
|
|
#define FAILSAFE_TIMEOUT_MS 30
|
2010-10-03 22:39:23 +02:00
|
|
|
|
|
|
|
enum {PID_RATE_ROLL, PID_RATE_PITCH, PID_RATE_YAW, PID_ROLL, PID_PITCH, PID_YAW, PID_MAX};
|
|
|
|
|
|
|
|
enum {ROLL,PITCH,YAW,MAX_AXES};
|
|
|
|
|
|
|
|
|
|
|
|
// Private types
|
|
|
|
typedef struct {
|
|
|
|
float p;
|
|
|
|
float i;
|
|
|
|
float d;
|
|
|
|
float iLim;
|
|
|
|
float iAccumulator;
|
|
|
|
float lastErr;
|
|
|
|
} pid_type;
|
|
|
|
|
|
|
|
// Private variables
|
|
|
|
static xTaskHandle taskHandle;
|
2010-10-08 17:38:23 +02:00
|
|
|
static StabilizationSettingsData settings;
|
2010-10-03 22:39:23 +02:00
|
|
|
static xQueueHandle queue;
|
|
|
|
float dT = 1;
|
2011-06-22 02:49:20 +02:00
|
|
|
float gyro_alpha = 0;
|
|
|
|
float gyro_filtered[3] = {0,0,0};
|
2011-06-24 08:57:12 +02:00
|
|
|
float axis_lock_accum[3] = {0,0,0};
|
|
|
|
uint8_t max_axis_lock = 0;
|
2011-06-25 17:38:37 +02:00
|
|
|
uint8_t max_axislock_rate = 0;
|
2011-07-03 17:45:01 +02:00
|
|
|
float weak_leveling_kp = 0;
|
|
|
|
uint8_t weak_leveling_max = 0;
|
2011-08-10 10:51:46 +02:00
|
|
|
bool lowThrottleZeroIntegral;
|
2011-07-03 17:45:01 +02:00
|
|
|
|
2010-10-03 22:39:23 +02:00
|
|
|
pid_type pids[PID_MAX];
|
|
|
|
|
|
|
|
// Private functions
|
|
|
|
static void stabilizationTask(void* parameters);
|
2011-03-02 02:25:34 +01:00
|
|
|
static float ApplyPid(pid_type * pid, const float err);
|
2010-10-03 22:39:23 +02:00
|
|
|
static float bound(float val);
|
|
|
|
static void ZeroPids(void);
|
|
|
|
static void SettingsUpdatedCb(UAVObjEvent * ev);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Module initialization
|
|
|
|
*/
|
2011-06-20 07:35:40 +02:00
|
|
|
int32_t StabilizationStart()
|
2010-10-03 22:39:23 +02:00
|
|
|
{
|
|
|
|
// Initialize variables
|
2011-07-12 21:35:32 +02:00
|
|
|
|
2011-06-20 07:35:40 +02:00
|
|
|
// Start main task
|
|
|
|
xTaskCreate(stabilizationTask, (signed char*)"Stabilization", STACK_SIZE_BYTES/4, NULL, TASK_PRIORITY, &taskHandle);
|
|
|
|
TaskMonitorAdd(TASKINFO_RUNNING_STABILIZATION, taskHandle);
|
|
|
|
PIOS_WDG_RegisterFlag(PIOS_WDG_STABILIZATION);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-10-03 22:39:23 +02:00
|
|
|
/**
|
|
|
|
* Module initialization
|
|
|
|
*/
|
|
|
|
int32_t StabilizationInitialize()
|
|
|
|
{
|
|
|
|
// Initialize variables
|
2011-06-18 18:59:02 +02:00
|
|
|
StabilizationSettingsInitialize();
|
|
|
|
ActuatorDesiredInitialize();
|
|
|
|
#if defined(DIAGNOSTICS)
|
|
|
|
RateDesiredInitialize();
|
|
|
|
#endif
|
|
|
|
|
2010-10-03 22:39:23 +02:00
|
|
|
// Create object queue
|
|
|
|
queue = xQueueCreate(MAX_QUEUE_SIZE, sizeof(UAVObjEvent));
|
2011-06-20 07:35:40 +02:00
|
|
|
|
2010-10-03 22:39:23 +02:00
|
|
|
// Listen for updates.
|
2011-03-02 02:25:30 +01:00
|
|
|
// AttitudeActualConnectQueue(queue);
|
2011-12-12 20:28:04 +01:00
|
|
|
GyrosConnectQueue(queue);
|
2011-06-20 07:35:40 +02:00
|
|
|
|
2010-10-08 17:38:23 +02:00
|
|
|
StabilizationSettingsConnectCallback(SettingsUpdatedCb);
|
|
|
|
SettingsUpdatedCb(StabilizationSettingsHandle());
|
2010-10-03 22:39:23 +02:00
|
|
|
// Start main task
|
2011-06-20 07:35:40 +02:00
|
|
|
|
2010-10-03 22:39:23 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-07-13 05:44:32 +02:00
|
|
|
MODULE_INITCALL(StabilizationInitialize, StabilizationStart)
|
2011-06-20 07:35:40 +02:00
|
|
|
|
2010-10-03 22:39:23 +02:00
|
|
|
/**
|
|
|
|
* Module task
|
|
|
|
*/
|
|
|
|
static void stabilizationTask(void* parameters)
|
|
|
|
{
|
|
|
|
UAVObjEvent ev;
|
2011-06-23 01:51:25 +02:00
|
|
|
|
2012-01-25 16:56:07 +01:00
|
|
|
uint32_t timeval = PIOS_DELAY_GetRaw();
|
2011-06-23 01:51:25 +02:00
|
|
|
|
2010-10-03 22:39:23 +02:00
|
|
|
ActuatorDesiredData actuatorDesired;
|
2011-03-02 02:25:27 +01:00
|
|
|
StabilizationDesiredData stabDesired;
|
2010-10-24 22:00:02 +02:00
|
|
|
RateDesiredData rateDesired;
|
2010-10-03 22:39:23 +02:00
|
|
|
AttitudeActualData attitudeActual;
|
2011-12-12 20:28:04 +01:00
|
|
|
GyrosData gyrosData;
|
2011-05-03 18:04:44 +02:00
|
|
|
FlightStatusData flightStatus;
|
2011-06-23 01:51:25 +02:00
|
|
|
|
2010-10-08 17:38:23 +02:00
|
|
|
SettingsUpdatedCb((UAVObjEvent *) NULL);
|
2011-06-23 01:51:25 +02:00
|
|
|
|
2010-10-03 22:39:23 +02:00
|
|
|
// Main task loop
|
|
|
|
ZeroPids();
|
|
|
|
while(1) {
|
2011-01-10 01:16:30 +01:00
|
|
|
PIOS_WDG_UpdateFlag(PIOS_WDG_STABILIZATION);
|
2011-06-23 01:51:25 +02:00
|
|
|
|
2010-12-20 17:38:17 +01:00
|
|
|
// Wait until the AttitudeRaw object is updated, if a timeout then go to failsafe
|
2010-10-03 22:39:23 +02:00
|
|
|
if ( xQueueReceive(queue, &ev, FAILSAFE_TIMEOUT_MS / portTICK_RATE_MS) != pdTRUE )
|
|
|
|
{
|
|
|
|
AlarmsSet(SYSTEMALARMS_ALARM_STABILIZATION,SYSTEMALARMS_ALARM_WARNING);
|
2010-11-23 18:13:42 +01:00
|
|
|
continue;
|
2011-06-23 01:51:25 +02:00
|
|
|
}
|
|
|
|
|
2012-01-25 16:56:07 +01:00
|
|
|
dT = PIOS_DELAY_DiffuS(timeval) * 1.0e-6f;
|
|
|
|
timeval = PIOS_DELAY_GetRaw();
|
2011-06-23 01:51:25 +02:00
|
|
|
|
2011-05-03 18:04:44 +02:00
|
|
|
FlightStatusGet(&flightStatus);
|
2011-03-02 02:25:27 +01:00
|
|
|
StabilizationDesiredGet(&stabDesired);
|
2010-10-03 22:39:23 +02:00
|
|
|
AttitudeActualGet(&attitudeActual);
|
2011-12-12 20:28:04 +01:00
|
|
|
GyrosGet(&gyrosData);
|
2011-05-03 18:04:44 +02:00
|
|
|
|
2011-06-17 16:50:10 +02:00
|
|
|
#if defined(DIAGNOSTICS)
|
|
|
|
RateDesiredGet(&rateDesired);
|
|
|
|
#endif
|
|
|
|
|
2011-03-02 02:25:34 +01:00
|
|
|
#if defined(PIOS_QUATERNION_STABILIZATION)
|
|
|
|
// Quaternion calculation of error in each axis. Uses more memory.
|
2011-03-02 02:25:38 +01:00
|
|
|
float rpy_desired[3];
|
2011-03-02 02:25:34 +01:00
|
|
|
float q_desired[4];
|
|
|
|
float q_error[4];
|
|
|
|
float local_error[3];
|
2011-06-23 01:51:25 +02:00
|
|
|
|
2011-03-02 02:25:38 +01:00
|
|
|
// Essentially zero errors for anything in rate or none
|
|
|
|
if(stabDesired.StabilizationMode[STABILIZATIONDESIRED_STABILIZATIONMODE_ROLL] == STABILIZATIONDESIRED_STABILIZATIONMODE_ATTITUDE)
|
2011-06-23 01:51:25 +02:00
|
|
|
rpy_desired[0] = stabDesired.Roll;
|
|
|
|
else
|
2011-03-02 02:25:38 +01:00
|
|
|
rpy_desired[0] = attitudeActual.Roll;
|
|
|
|
|
|
|
|
if(stabDesired.StabilizationMode[STABILIZATIONDESIRED_STABILIZATIONMODE_PITCH] == STABILIZATIONDESIRED_STABILIZATIONMODE_ATTITUDE)
|
|
|
|
rpy_desired[1] = stabDesired.Pitch;
|
|
|
|
else
|
|
|
|
rpy_desired[1] = attitudeActual.Pitch;
|
|
|
|
|
|
|
|
if(stabDesired.StabilizationMode[STABILIZATIONDESIRED_STABILIZATIONMODE_YAW] == STABILIZATIONDESIRED_STABILIZATIONMODE_ATTITUDE)
|
|
|
|
rpy_desired[2] = stabDesired.Yaw;
|
|
|
|
else
|
|
|
|
rpy_desired[2] = attitudeActual.Yaw;
|
2011-06-23 01:51:25 +02:00
|
|
|
|
2011-03-02 02:25:38 +01:00
|
|
|
RPY2Quaternion(rpy_desired, q_desired);
|
2011-03-02 02:25:34 +01:00
|
|
|
quat_inverse(q_desired);
|
2011-03-02 02:25:38 +01:00
|
|
|
quat_mult(q_desired, &attitudeActual.q1, q_error);
|
2011-03-02 02:25:34 +01:00
|
|
|
quat_inverse(q_error);
|
|
|
|
Quaternion2RPY(q_error, local_error);
|
2011-06-23 01:51:25 +02:00
|
|
|
|
2011-03-02 02:25:34 +01:00
|
|
|
#else
|
|
|
|
// Simpler algorithm for CC, less memory
|
|
|
|
float local_error[3] = {stabDesired.Roll - attitudeActual.Roll,
|
|
|
|
stabDesired.Pitch - attitudeActual.Pitch,
|
|
|
|
stabDesired.Yaw - attitudeActual.Yaw};
|
|
|
|
local_error[2] = fmod(local_error[2] + 180, 360) - 180;
|
|
|
|
#endif
|
2011-06-23 01:51:25 +02:00
|
|
|
|
|
|
|
|
2011-12-12 20:28:04 +01:00
|
|
|
gyro_filtered[0] = gyro_filtered[0] * gyro_alpha + gyrosData.x * (1 - gyro_alpha);
|
|
|
|
gyro_filtered[1] = gyro_filtered[1] * gyro_alpha + gyrosData.y * (1 - gyro_alpha);
|
|
|
|
gyro_filtered[2] = gyro_filtered[2] * gyro_alpha + gyrosData.z * (1 - gyro_alpha);
|
2011-06-23 01:51:25 +02:00
|
|
|
|
2011-03-02 02:25:27 +01:00
|
|
|
float *attitudeDesiredAxis = &stabDesired.Roll;
|
2010-10-05 16:51:33 +02:00
|
|
|
float *actuatorDesiredAxis = &actuatorDesired.Roll;
|
2010-10-24 22:00:02 +02:00
|
|
|
float *rateDesiredAxis = &rateDesired.Roll;
|
2011-06-23 01:51:25 +02:00
|
|
|
|
2010-10-05 16:51:33 +02:00
|
|
|
//Calculate desired rate
|
2011-06-24 08:57:12 +02:00
|
|
|
for(uint8_t i=0; i< MAX_AXES; i++)
|
2010-10-05 16:51:33 +02:00
|
|
|
{
|
2011-06-24 08:57:12 +02:00
|
|
|
switch(stabDesired.StabilizationMode[i])
|
2010-10-05 16:51:33 +02:00
|
|
|
{
|
2011-03-02 02:25:30 +01:00
|
|
|
case STABILIZATIONDESIRED_STABILIZATIONMODE_RATE:
|
2011-06-24 08:57:12 +02:00
|
|
|
rateDesiredAxis[i] = attitudeDesiredAxis[i];
|
2011-09-11 23:33:38 +02:00
|
|
|
|
|
|
|
// Zero attitude and axis lock accumulators
|
2011-09-12 18:56:01 +02:00
|
|
|
pids[PID_ROLL + i].iAccumulator = 0;
|
2011-06-24 08:57:12 +02:00
|
|
|
axis_lock_accum[i] = 0;
|
2011-03-02 02:25:30 +01:00
|
|
|
break;
|
2011-06-23 01:51:25 +02:00
|
|
|
|
2011-07-03 17:45:01 +02:00
|
|
|
case STABILIZATIONDESIRED_STABILIZATIONMODE_WEAKLEVELING:
|
|
|
|
{
|
|
|
|
float weak_leveling = local_error[i] * weak_leveling_kp;
|
|
|
|
|
|
|
|
if(weak_leveling > weak_leveling_max)
|
|
|
|
weak_leveling = weak_leveling_max;
|
|
|
|
if(weak_leveling < -weak_leveling_max)
|
|
|
|
weak_leveling = -weak_leveling_max;
|
|
|
|
|
|
|
|
rateDesiredAxis[i] = attitudeDesiredAxis[i] + weak_leveling;
|
|
|
|
|
2011-09-11 23:33:38 +02:00
|
|
|
// Zero attitude and axis lock accumulators
|
2011-09-12 18:56:01 +02:00
|
|
|
pids[PID_ROLL + i].iAccumulator = 0;
|
2011-07-03 17:45:01 +02:00
|
|
|
axis_lock_accum[i] = 0;
|
2011-03-02 02:25:30 +01:00
|
|
|
break;
|
2011-07-03 17:45:01 +02:00
|
|
|
}
|
2011-03-02 02:25:30 +01:00
|
|
|
case STABILIZATIONDESIRED_STABILIZATIONMODE_ATTITUDE:
|
2011-06-24 08:57:12 +02:00
|
|
|
rateDesiredAxis[i] = ApplyPid(&pids[PID_ROLL + i], local_error[i]);
|
2011-09-11 19:27:17 +02:00
|
|
|
|
|
|
|
if(rateDesiredAxis[i] > settings.MaximumRate[i])
|
|
|
|
rateDesiredAxis[i] = settings.MaximumRate[i];
|
2011-09-12 18:56:01 +02:00
|
|
|
else if(rateDesiredAxis[i] < -settings.MaximumRate[i])
|
2011-09-11 19:27:17 +02:00
|
|
|
rateDesiredAxis[i] = -settings.MaximumRate[i];
|
|
|
|
|
|
|
|
|
2011-06-24 08:57:12 +02:00
|
|
|
axis_lock_accum[i] = 0;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case STABILIZATIONDESIRED_STABILIZATIONMODE_AXISLOCK:
|
2011-06-25 17:38:37 +02:00
|
|
|
if(fabs(attitudeDesiredAxis[i]) > max_axislock_rate) {
|
|
|
|
// While getting strong commands act like rate mode
|
|
|
|
rateDesiredAxis[i] = attitudeDesiredAxis[i];
|
|
|
|
axis_lock_accum[i] = 0;
|
|
|
|
} else {
|
|
|
|
// For weaker commands or no command simply attitude lock (almost) on no gyro change
|
|
|
|
axis_lock_accum[i] += (attitudeDesiredAxis[i] - gyro_filtered[i]) * dT;
|
|
|
|
if(axis_lock_accum[i] > max_axis_lock)
|
|
|
|
axis_lock_accum[i] = max_axis_lock;
|
|
|
|
else if(axis_lock_accum[i] < -max_axis_lock)
|
|
|
|
axis_lock_accum[i] = -max_axis_lock;
|
|
|
|
|
|
|
|
rateDesiredAxis[i] = ApplyPid(&pids[PID_ROLL + i], axis_lock_accum[i]);
|
|
|
|
}
|
2011-09-11 19:27:17 +02:00
|
|
|
|
|
|
|
if(rateDesiredAxis[i] > settings.MaximumRate[i])
|
|
|
|
rateDesiredAxis[i] = settings.MaximumRate[i];
|
2011-09-12 18:56:01 +02:00
|
|
|
else if(rateDesiredAxis[i] < -settings.MaximumRate[i])
|
2011-09-11 19:27:17 +02:00
|
|
|
rateDesiredAxis[i] = -settings.MaximumRate[i];
|
|
|
|
|
2011-03-02 02:25:30 +01:00
|
|
|
break;
|
2010-10-05 16:51:33 +02:00
|
|
|
}
|
2010-10-03 22:39:23 +02:00
|
|
|
}
|
2011-06-23 01:51:25 +02:00
|
|
|
|
2011-03-02 02:25:38 +01:00
|
|
|
uint8_t shouldUpdate = 1;
|
2011-06-17 16:50:10 +02:00
|
|
|
#if defined(DIAGNOSTICS)
|
2010-10-24 22:00:02 +02:00
|
|
|
RateDesiredSet(&rateDesired);
|
2011-06-17 16:50:10 +02:00
|
|
|
#endif
|
2010-10-05 16:51:33 +02:00
|
|
|
ActuatorDesiredGet(&actuatorDesired);
|
|
|
|
//Calculate desired command
|
2010-10-08 17:38:23 +02:00
|
|
|
for(int8_t ct=0; ct< MAX_AXES; ct++)
|
2010-10-03 22:39:23 +02:00
|
|
|
{
|
2011-03-02 02:25:27 +01:00
|
|
|
switch(stabDesired.StabilizationMode[ct])
|
2010-10-05 16:51:33 +02:00
|
|
|
{
|
2011-03-02 02:25:30 +01:00
|
|
|
case STABILIZATIONDESIRED_STABILIZATIONMODE_RATE:
|
|
|
|
case STABILIZATIONDESIRED_STABILIZATIONMODE_ATTITUDE:
|
2011-06-24 18:30:28 +02:00
|
|
|
case STABILIZATIONDESIRED_STABILIZATIONMODE_AXISLOCK:
|
2011-07-03 17:45:01 +02:00
|
|
|
case STABILIZATIONDESIRED_STABILIZATIONMODE_WEAKLEVELING:
|
2010-10-05 16:51:33 +02:00
|
|
|
{
|
2011-06-22 02:49:20 +02:00
|
|
|
float command = ApplyPid(&pids[PID_RATE_ROLL + ct], rateDesiredAxis[ct] - gyro_filtered[ct]);
|
2010-10-05 16:51:33 +02:00
|
|
|
actuatorDesiredAxis[ct] = bound(command);
|
|
|
|
break;
|
|
|
|
}
|
2011-03-02 02:25:27 +01:00
|
|
|
case STABILIZATIONDESIRED_STABILIZATIONMODE_NONE:
|
|
|
|
switch (ct)
|
|
|
|
{
|
|
|
|
case ROLL:
|
|
|
|
actuatorDesiredAxis[ct] = bound(attitudeDesiredAxis[ct]);
|
|
|
|
shouldUpdate = 1;
|
2011-09-11 23:33:38 +02:00
|
|
|
pids[PID_RATE_ROLL].iAccumulator = 0;
|
|
|
|
pids[PID_ROLL].iAccumulator = 0;
|
2011-03-02 02:25:27 +01:00
|
|
|
break;
|
|
|
|
case PITCH:
|
|
|
|
actuatorDesiredAxis[ct] = bound(attitudeDesiredAxis[ct]);
|
|
|
|
shouldUpdate = 1;
|
2011-09-11 23:33:38 +02:00
|
|
|
pids[PID_RATE_PITCH].iAccumulator = 0;
|
|
|
|
pids[PID_PITCH].iAccumulator = 0;
|
2011-03-02 02:25:27 +01:00
|
|
|
break;
|
|
|
|
case YAW:
|
|
|
|
actuatorDesiredAxis[ct] = bound(attitudeDesiredAxis[ct]);
|
|
|
|
shouldUpdate = 1;
|
2011-09-11 23:33:38 +02:00
|
|
|
pids[PID_RATE_YAW].iAccumulator = 0;
|
|
|
|
pids[PID_YAW].iAccumulator = 0;
|
2011-03-02 02:25:27 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
2011-06-23 01:51:25 +02:00
|
|
|
|
2010-10-05 16:51:33 +02:00
|
|
|
}
|
2010-10-03 22:39:23 +02:00
|
|
|
}
|
2011-06-23 01:51:25 +02:00
|
|
|
|
2010-10-08 17:38:28 +02:00
|
|
|
// Save dT
|
|
|
|
actuatorDesired.UpdateTime = dT * 1000;
|
2011-06-23 01:51:25 +02:00
|
|
|
|
2011-05-07 22:06:04 +02:00
|
|
|
if(PARSE_FLIGHT_MODE(flightStatus.FlightMode) == FLIGHTMODE_MANUAL)
|
|
|
|
shouldUpdate = 0;
|
2011-06-23 01:51:25 +02:00
|
|
|
|
2010-10-05 16:51:33 +02:00
|
|
|
if(shouldUpdate)
|
2010-10-03 22:39:23 +02:00
|
|
|
{
|
2011-03-02 02:25:27 +01:00
|
|
|
actuatorDesired.Throttle = stabDesired.Throttle;
|
2010-11-12 05:36:04 +01:00
|
|
|
if(dT > 15)
|
|
|
|
actuatorDesired.NumLongUpdates++;
|
2010-10-03 22:39:23 +02:00
|
|
|
ActuatorDesiredSet(&actuatorDesired);
|
|
|
|
}
|
2011-06-23 01:51:25 +02:00
|
|
|
|
2011-05-03 18:04:44 +02:00
|
|
|
if(flightStatus.Armed != FLIGHTSTATUS_ARMED_ARMED ||
|
2011-08-10 10:51:46 +02:00
|
|
|
(lowThrottleZeroIntegral && stabDesired.Throttle < 0) ||
|
2011-07-12 21:35:32 +02:00
|
|
|
!shouldUpdate)
|
2010-10-03 22:39:23 +02:00
|
|
|
{
|
|
|
|
ZeroPids();
|
|
|
|
}
|
2011-06-23 01:51:25 +02:00
|
|
|
|
|
|
|
|
2011-05-07 22:06:04 +02:00
|
|
|
// Clear alarms
|
2011-06-23 01:51:25 +02:00
|
|
|
AlarmsClear(SYSTEMALARMS_ALARM_STABILIZATION);
|
2010-10-03 22:39:23 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-03-02 02:25:34 +01:00
|
|
|
float ApplyPid(pid_type * pid, const float err)
|
2010-10-03 22:39:23 +02:00
|
|
|
{
|
|
|
|
float diff = (err - pid->lastErr);
|
|
|
|
pid->lastErr = err;
|
2011-06-23 01:51:25 +02:00
|
|
|
|
|
|
|
// Scale up accumulator by 1000 while computing to avoid losing precision
|
2011-11-26 22:52:25 +01:00
|
|
|
pid->iAccumulator += err * (pid->i * dT * 1000.0f);
|
|
|
|
if(pid->iAccumulator > (pid->iLim * 1000.0f)) {
|
|
|
|
pid->iAccumulator = pid->iLim * 1000.0f;
|
|
|
|
} else if (pid->iAccumulator < -(pid->iLim * 1000.0f)) {
|
|
|
|
pid->iAccumulator = -pid->iLim * 1000.0f;
|
2010-10-03 22:39:23 +02:00
|
|
|
}
|
2011-11-26 22:52:25 +01:00
|
|
|
return ((err * pid->p) + pid->iAccumulator / 1000.0f + (diff * pid->d / dT));
|
2010-10-03 22:39:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void ZeroPids(void)
|
|
|
|
{
|
2010-10-08 17:38:23 +02:00
|
|
|
for(int8_t ct = 0; ct < PID_MAX; ct++) {
|
2011-11-26 22:52:25 +01:00
|
|
|
pids[ct].iAccumulator = 0.0f;
|
|
|
|
pids[ct].lastErr = 0.0f;
|
2010-10-03 22:39:23 +02:00
|
|
|
}
|
2011-06-24 08:57:12 +02:00
|
|
|
for(uint8_t i = 0; i < 3; i++)
|
2011-11-26 22:52:25 +01:00
|
|
|
axis_lock_accum[i] = 0.0f;
|
2010-10-03 22:39:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Bound input value between limits
|
|
|
|
*/
|
|
|
|
static float bound(float val)
|
|
|
|
{
|
2011-11-26 22:52:25 +01:00
|
|
|
if(val < -1.0f) {
|
|
|
|
val = -1.0f;
|
|
|
|
} else if(val > 1.0f) {
|
|
|
|
val = 1.0f;
|
2010-10-03 22:39:23 +02:00
|
|
|
}
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void SettingsUpdatedCb(UAVObjEvent * ev)
|
|
|
|
{
|
|
|
|
memset(pids,0,sizeof (pid_type) * PID_MAX);
|
2010-10-08 17:38:23 +02:00
|
|
|
StabilizationSettingsGet(&settings);
|
2011-06-23 01:51:25 +02:00
|
|
|
|
2011-06-23 02:06:39 +02:00
|
|
|
// Set the roll rate PID constants
|
|
|
|
pids[0].p = settings.RollRatePID[STABILIZATIONSETTINGS_ROLLRATEPID_KP];
|
|
|
|
pids[0].i = settings.RollRatePID[STABILIZATIONSETTINGS_ROLLRATEPID_KI];
|
|
|
|
pids[0].d = settings.RollRatePID[STABILIZATIONSETTINGS_ROLLRATEPID_KD];
|
|
|
|
pids[0].iLim = settings.RollRatePID[STABILIZATIONSETTINGS_ROLLRATEPID_ILIMIT];
|
|
|
|
|
|
|
|
// Set the pitch rate PID constants
|
|
|
|
pids[1].p = settings.PitchRatePID[STABILIZATIONSETTINGS_PITCHRATEPID_KP];
|
|
|
|
pids[1].i = settings.PitchRatePID[STABILIZATIONSETTINGS_PITCHRATEPID_KI];
|
|
|
|
pids[1].d = settings.PitchRatePID[STABILIZATIONSETTINGS_PITCHRATEPID_KD];
|
|
|
|
pids[1].iLim = settings.PitchRatePID[STABILIZATIONSETTINGS_PITCHRATEPID_ILIMIT];
|
|
|
|
|
|
|
|
// Set the yaw rate PID constants
|
|
|
|
pids[2].p = settings.YawRatePID[STABILIZATIONSETTINGS_YAWRATEPID_KP];
|
|
|
|
pids[2].i = settings.YawRatePID[STABILIZATIONSETTINGS_YAWRATEPID_KI];
|
|
|
|
pids[2].d = settings.YawRatePID[STABILIZATIONSETTINGS_YAWRATEPID_KD];
|
|
|
|
pids[2].iLim = settings.YawRatePID[STABILIZATIONSETTINGS_YAWRATEPID_ILIMIT];
|
|
|
|
|
|
|
|
// Set the roll attitude PI constants
|
|
|
|
pids[3].p = settings.RollPI[STABILIZATIONSETTINGS_ROLLPI_KP];
|
|
|
|
pids[3].i = settings.RollPI[STABILIZATIONSETTINGS_ROLLPI_KI];
|
|
|
|
pids[3].iLim = settings.RollPI[STABILIZATIONSETTINGS_ROLLPI_ILIMIT];
|
|
|
|
|
|
|
|
// Set the pitch attitude PI constants
|
|
|
|
pids[4].p = settings.PitchPI[STABILIZATIONSETTINGS_PITCHPI_KP];
|
|
|
|
pids[4].i = settings.PitchPI[STABILIZATIONSETTINGS_PITCHPI_KI];
|
|
|
|
pids[4].iLim = settings.PitchPI[STABILIZATIONSETTINGS_PITCHPI_ILIMIT];
|
|
|
|
|
|
|
|
// Set the yaw attitude PI constants
|
|
|
|
pids[5].p = settings.YawPI[STABILIZATIONSETTINGS_YAWPI_KP];
|
|
|
|
pids[5].i = settings.YawPI[STABILIZATIONSETTINGS_YAWPI_KI];
|
|
|
|
pids[5].iLim = settings.YawPI[STABILIZATIONSETTINGS_YAWPI_ILIMIT];
|
2011-06-22 02:49:20 +02:00
|
|
|
|
2011-06-24 08:57:12 +02:00
|
|
|
// Maximum deviation to accumulate for axis lock
|
|
|
|
max_axis_lock = settings.MaxAxisLock;
|
2011-06-25 17:38:37 +02:00
|
|
|
max_axislock_rate = settings.MaxAxisLockRate;
|
2011-06-24 08:57:12 +02:00
|
|
|
|
2011-07-03 17:45:01 +02:00
|
|
|
// Settings for weak leveling
|
|
|
|
weak_leveling_kp = settings.WeakLevelingKp;
|
|
|
|
weak_leveling_max = settings.MaxWeakLevelingRate;
|
|
|
|
|
2011-08-10 10:51:46 +02:00
|
|
|
// Whether to zero the PID integrals while throttle is low
|
|
|
|
lowThrottleZeroIntegral = settings.LowThrottleZeroIntegral == STABILIZATIONSETTINGS_LOWTHROTTLEZEROINTEGRAL_TRUE;
|
|
|
|
|
2011-06-22 02:49:20 +02:00
|
|
|
// The dT has some jitter iteration to iteration that we don't want to
|
|
|
|
// make thie result unpredictable. Still, it's nicer to specify the constant
|
2011-06-23 01:51:25 +02:00
|
|
|
// based on a time (in ms) rather than a fixed multiplier. The error between
|
2011-06-22 02:49:20 +02:00
|
|
|
// update rates on OP (~300 Hz) and CC (~475 Hz) is negligible for this
|
|
|
|
// calculation
|
|
|
|
const float fakeDt = 0.0025;
|
|
|
|
if(settings.GyroTau < 0.0001)
|
|
|
|
gyro_alpha = 0; // not trusting this to resolve to 0
|
|
|
|
else
|
2012-01-03 00:19:14 +01:00
|
|
|
gyro_alpha = expf(-fakeDt / settings.GyroTau);
|
2010-10-03 22:39:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2011-03-02 02:25:30 +01:00
|
|
|
* @}
|
|
|
|
* @}
|
|
|
|
*/
|