1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2024-11-30 08:24:11 +01:00
LibrePilot/flight/modules/StateEstimation/stateestimation.c

526 lines
16 KiB
C
Raw Normal View History

2013-05-19 17:11:09 +02:00
/**
******************************************************************************
* @addtogroup OpenPilotModules OpenPilot Modules
* @{
* @addtogroup State Estimation
* @brief Acquires sensor data and computes state estimate
* @{
*
* @file stateestimation.c
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2013.
* @brief Module to handle all comms to the AHRS on a periodic basis.
*
* @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 "inc/stateestimation.h"
2013-05-19 17:11:09 +02:00
#include <gyrosensor.h>
#include <accelsensor.h>
2013-05-20 10:35:54 +02:00
#include <magsensor.h>
2013-05-19 17:11:09 +02:00
#include <barosensor.h>
#include <airspeedsensor.h>
#include <gpsposition.h>
#include <gpsvelocity.h>
#include <gyrostate.h>
#include <accelstate.h>
2013-05-20 10:35:54 +02:00
#include <magstate.h>
#include <barostate.h>
#include <airspeedstate.h>
#include <attitudestate.h>
#include <positionstate.h>
#include <velocitystate.h>
2013-05-19 17:11:09 +02:00
#include "revosettings.h"
#include "homelocation.h"
#include "flightstatus.h"
2013-05-19 17:11:09 +02:00
#include "CoordinateConversions.h"
2013-05-19 17:11:09 +02:00
// Private constants
#define STACK_SIZE_BYTES 2048
#define CALLBACK_PRIORITY CALLBACK_PRIORITY_REGULAR
#define TASK_PRIORITY CALLBACK_TASK_FLIGHTCONTROL
2013-05-19 17:11:09 +02:00
#define TIMEOUT_MS 100
// Private types
struct filterQueueStruct;
typedef struct filterQueueStruct {
stateFilter *filter;
struct filterQueueStruct *next;
} filterQueue;
2013-05-19 17:11:09 +02:00
// Private variables
static DelayedCallbackInfo *stateEstimationCallback;
static volatile RevoSettingsData revoSettings;
static volatile HomeLocationData homeLocation;
2013-05-19 17:11:09 +02:00
static float LLA2NEDM[3];
static volatile sensorUpdates updatedSensors;
static int32_t fusionAlgorithm = -1;
static filterQueue *filterChain = NULL;
// different filters available to state estimation
static stateFilter magFilter;
static stateFilter baroFilter;
static stateFilter airFilter;
static stateFilter stationaryFilter;
static stateFilter cfFilter;
static stateFilter cfmFilter;
static stateFilter ekf13iFilter;
static stateFilter ekf13Filter;
static stateFilter ekf16Filter;
static stateFilter ekf16iFilter;
// preconfigured filter chains selectable via revoSettings.FusionAlgorithm
static const filterQueue *cfQueue = &(filterQueue) {
.filter = &magFilter,
.next = &(filterQueue) {
2013-05-20 12:36:20 +02:00
.filter = &airFilter,
.next = &(filterQueue) {
2013-05-20 12:36:20 +02:00
.filter = &baroFilter,
.next = &(filterQueue) {
.filter = &cfFilter,
.next = NULL,
},
}
}
};
static const filterQueue *cfmQueue = &(filterQueue) {
.filter = &magFilter,
.next = &(filterQueue) {
2013-05-20 12:36:20 +02:00
.filter = &airFilter,
.next = &(filterQueue) {
2013-05-20 12:36:20 +02:00
.filter = &baroFilter,
.next = &(filterQueue) {
.filter = &cfmFilter,
.next = NULL,
}
}
}
};
static const filterQueue *ekf13iQueue = &(filterQueue) {
.filter = &magFilter,
.next = &(filterQueue) {
2013-05-20 12:36:20 +02:00
.filter = &airFilter,
.next = &(filterQueue) {
2013-05-20 12:36:20 +02:00
.filter = &baroFilter,
.next = &(filterQueue) {
2013-05-20 12:36:20 +02:00
.filter = &stationaryFilter,
.next = &(filterQueue) {
.filter = &ekf13iFilter,
.next = NULL,
}
}
}
}
};
static const filterQueue *ekf13Queue = &(filterQueue) {
.filter = &magFilter,
.next = &(filterQueue) {
2013-05-20 12:36:20 +02:00
.filter = &airFilter,
.next = &(filterQueue) {
2013-05-20 12:36:20 +02:00
.filter = &baroFilter,
.next = &(filterQueue) {
.filter = &ekf13Filter,
.next = NULL,
}
}
}
};
static const filterQueue *ekf16iQueue = &(filterQueue) {
.filter = &magFilter,
.next = &(filterQueue) {
2013-05-20 12:36:20 +02:00
.filter = &airFilter,
.next = &(filterQueue) {
2013-05-20 12:36:20 +02:00
.filter = &baroFilter,
.next = &(filterQueue) {
2013-05-20 12:36:20 +02:00
.filter = &stationaryFilter,
.next = &(filterQueue) {
.filter = &ekf16iFilter,
.next = NULL,
}
}
}
}
};
static const filterQueue *ekf16Queue = &(filterQueue) {
.filter = &magFilter,
.next = &(filterQueue) {
2013-05-20 12:36:20 +02:00
.filter = &airFilter,
.next = &(filterQueue) {
2013-05-20 12:36:20 +02:00
.filter = &baroFilter,
.next = &(filterQueue) {
.filter = &ekf16Filter,
.next = NULL,
}
}
}
};
2013-05-19 17:11:09 +02:00
// Private functions
static void settingsUpdatedCb(UAVObjEvent *objEv);
static void sensorUpdatedCb(UAVObjEvent *objEv);
static void StateEstimationCb(void);
static void getNED(GPSPositionData *gpsPosition, float *NED);
static float sane(float value);
2013-05-19 17:11:09 +02:00
/**
* Initialise the module. Called before the start function
* \returns 0 on success or -1 if initialisation failed
*/
int32_t StateEstimationInitialize(void)
{
RevoSettingsInitialize();
RevoSettingsConnectCallback(&settingsUpdatedCb);
HomeLocationConnectCallback(&settingsUpdatedCb);
GyroSensorConnectCallback(&sensorUpdatedCb);
AccelSensorConnectCallback(&sensorUpdatedCb);
2013-05-20 10:35:54 +02:00
MagSensorConnectCallback(&sensorUpdatedCb);
2013-05-19 17:11:09 +02:00
BaroSensorConnectCallback(&sensorUpdatedCb);
AirspeedSensorConnectCallback(&sensorUpdatedCb);
GPSPositionConnectCallback(&sensorUpdatedCb);
GPSVelocityConnectCallback(&sensorUpdatedCb);
stateEstimationCallback = DelayedCallbackCreate(&StateEstimationCb, CALLBACK_PRIORITY, TASK_PRIORITY, STACK_SIZE_BYTES);
return 0;
}
/**
* Start the task. Expects all objects to be initialized by this point.
* \returns 0 on success or -1 if initialisation failed
*/
int32_t StateEstimationStart(void)
{
RevoSettingsConnectCallback(&settingsUpdatedCb);
// Force settings update to make sure rotation loaded
settingsUpdatedCb(NULL);
// Initialize Filters
filterMagInitialize(&magFilter);
filterBaroInitialize(&baroFilter);
filterAirInitialize(&airFilter);
filterStationaryInitialize(&stationaryFilter);
filterCFInitialize(&cfFilter);
filterCFMInitialize(&cfmFilter);
filterEKF13iInitialize(&ekf13iFilter);
filterEKF13Initialize(&ekf13Filter);
filterEKF16Initialize(&ekf16Filter);
filterEKF16iInitialize(&ekf16iFilter);
2013-05-19 17:11:09 +02:00
return 0;
}
MODULE_INITCALL(AttitudeInitialize, AttitudeStart)
/**
* Module callback
*/
static void StateEstimationCb(void)
{
// alarms flag
uint8_t alarm = 0;
// set alarm to warning if called through timeout
if (updatedSensors == 0) {
2013-05-19 17:11:09 +02:00
AlarmsSet(SYSTEMALARMS_ALARM_ATTITUDE, SYSTEMALARMS_ALARM_WARNING);
alarm = 1;
}
// check if a new filter chain should be initialized
if (fusionAlgorithm != revoSettings.FusionAlgorithm) {
FlightStatusData fs;
FlightStatusGet(&fs);
if (fs.Armed == FLIGHTSTATUS_ARMED_DISARMED || fusionAlgorithm == -1) {
const filterQueue *newFilterChain;
switch (revoSettings.FusionAlgorithm) {
case REVOSETTINGS_FUSIONALGORITHM_COMPLEMENTARY:
newFilterChain = cfQueue;
break;
case REVOSETTINGS_FUSIONALGORITHM_COMPLEMENTARYMAG:
newFilterChain = cfmQueue;
break;
case REVOSETTINGS_FUSIONALGORITHM_INS13INDOOR:
newFilterChain = ekf13iQueue;
break;
case REVOSETTINGS_FUSIONALGORITHM_INS13OUTDOOR:
newFilterChain = ekf13Queue;
break;
case REVOSETTINGS_FUSIONALGORITHM_INS16INDOOR:
newFilterChain = ekf16iQueue;
break;
case REVOSETTINGS_FUSIONALGORITHM_INS16OUTDOOR:
newFilterChain = ekf16Queue;
break;
default:
newFilterChain = NULL;
}
// initialize filters in chain
filterQueue *current = (filterQueue *)newFilterChain;
bool error = 0;
while (current != NULL) {
int32_t result = current->filter->init();
if (result != 0) {
error = 1;
break;
}
current = current->next;
}
if (error) {
AlarmsSet(SYSTEMALARMS_ALARM_ATTITUDE, SYSTEMALARMS_ALARM_ERROR);
return;
} else {
// set new fusion algortithm
filterChain = (filterQueue *)newFilterChain;
fusionAlgorithm = revoSettings.FusionAlgorithm;
}
}
}
2013-05-19 17:11:09 +02:00
// read updated sensor UAVObjects and set initial state
stateEstimation states;
states.updated = updatedSensors;
updatedSensors ^= states.updated;
2013-05-19 17:11:09 +02:00
// most sensors get only rudimentary sanity checks
#define SANITYCHECK3(sensorname, shortname, a1, a2, a3) \
if (ISSET(states.updated, shortname##_UPDATED)) { \
2013-05-19 17:11:09 +02:00
sensorname##Data s; \
sensorname##Get(&s); \
2013-05-19 17:11:09 +02:00
if (sane(s.a1) && sane(s.a2) && sane(s.a3)) { \
states.shortname[0] = s.a1; \
states.shortname[1] = s.a2; \
states.shortname[2] = s.a3; \
2013-05-19 17:11:09 +02:00
} \
else { \
UNSET(states.updated, shortname##_UPDATED); \
2013-05-19 17:11:09 +02:00
} \
}
SANITYCHECK3(GyroSensor, gyr, x, y, z);
SANITYCHECK3(AccelSensor, acc, x, y, z);
2013-05-20 10:35:54 +02:00
SANITYCHECK3(MagSensor, mag, x, y, z);
2013-05-19 17:11:09 +02:00
SANITYCHECK3(GPSVelocity, vel, North, East, Down);
#define SANITYCHECK1(sensorname, shortname, a1, EXTRACHECK) \
if (ISSET(states.updated, shortname##_UPDATED)) { \
2013-05-19 17:11:09 +02:00
sensorname##Data s; \
sensorname##Get(&s); \
2013-05-19 17:11:09 +02:00
if (sane(s.a1) && EXTRACHECK) { \
states.shortname[0] = s.a1; \
2013-05-19 17:11:09 +02:00
} \
else { \
UNSET(states.updated, shortname##_UPDATED); \
2013-05-19 17:11:09 +02:00
} \
}
SANITYCHECK1(BaroSensor, bar, Altitude, 1);
SANITYCHECK1(AirspeedSensor, air, CalibratedAirspeed, s.SensorConnected == AIRSPEEDSENSOR_SENSORCONNECTED_TRUE);
2013-05-20 12:36:20 +02:00
states.air[1] = 0.0f; // sensor does not provide true airspeed, needs to be calculated by filter
2013-05-19 17:11:09 +02:00
// GPS is a tiny bit more tricky as GPSPosition is not float (otherwise the conversion to NED could sit in a filter) but integers, for precision reasons
if (ISSET(states.updated, pos_UPDATED)) {
2013-05-19 17:11:09 +02:00
GPSPositionData s;
GPSPositionGet(&s);
if (homeLocation.Set == HOMELOCATION_SET_TRUE && sane(s.Latitude) && sane(s.Longitude) && sane(s.Altitude) && (fabsf(s.Latitude) > 1e-5f || fabsf(s.Latitude) > 1e-5f || fabsf(s.Latitude) > 1e-5f)) {
getNED(&s, states.pos);
2013-05-19 17:11:09 +02:00
} else {
UNSET(states.updated, pos_UPDATED);
2013-05-19 17:11:09 +02:00
}
}
// at this point sensor state is stored in "states" with some rudimentary filtering applied
2013-05-19 17:11:09 +02:00
// apply all filters in the current filter chain
filterQueue *current = (filterQueue *)filterChain;
bool error = 0;
while (current != NULL) {
int32_t result = current->filter->filter(&states);
if (result != 0) {
error = 1;
}
current = current->next;
}
if (error) {
AlarmsSet(SYSTEMALARMS_ALARM_ATTITUDE, SYSTEMALARMS_ALARM_ERROR);
}
// the final output of filters is saved in state variables
#define STORE3(statename, shortname, a1, a2, a3) \
if (ISSET(states.updated, shortname##_UPDATED)) { \
statename##Data s; \
statename##Get(&s); \
s.a1 = states.shortname[0]; \
s.a2 = states.shortname[1]; \
s.a3 = states.shortname[2]; \
statename##Set(&s); \
}
STORE3(GyroState, gyr, x, y, z);
STORE3(AccelState, acc, x, y, z);
2013-05-20 10:35:54 +02:00
STORE3(MagState, mag, x, y, z);
STORE3(PositionState, pos, North, East, Down);
STORE3(VelocityState, vel, North, East, Down);
#define STORE2(statename, shortname, a1, a2) \
if (ISSET(states.updated, shortname##_UPDATED)) { \
statename##Data s; \
statename##Get(&s); \
s.a1 = states.shortname[0]; \
s.a2 = states.shortname[1]; \
statename##Set(&s); \
}
STORE2(AirspeedState, air, CalibratedAirspeed, TrueAirspeed);
#define STORE1(statename, shortname, a1) \
if (ISSET(states.updated, shortname##_UPDATED)) { \
statename##Data s; \
statename##Get(&s); \
s.a1 = states.shortname[0]; \
statename##Set(&s); \
}
STORE1(BaroState, bar, Altitude);
// attitude nees manual conversion from quaternion to euler
if (ISSET(states.updated, att_UPDATED)) { \
AttitudeStateData s;
AttitudeStateGet(&s);
s.q1 = states.att[0];
s.q2 = states.att[1];
s.q3 = states.att[2];
s.q4 = states.att[3];
Quaternion2RPY(&s.q1, &s.Roll);
AttitudeStateSet(&s);
}
2013-05-19 17:11:09 +02:00
// clear alarms if everything is alright, then schedule callback execution after timeout
if (!alarm) {
AlarmsClear(SYSTEMALARMS_ALARM_ATTITUDE);
}
DelayedCallbackSchedule(stateEstimationCallback, TIMEOUT_MS, CALLBACK_UPDATEMODE_SOONER);
2013-05-19 17:11:09 +02:00
}
/**
* Callback for eventdispatcher when HomeLocation or RevoSettings has been updated
*/
2013-05-19 17:11:09 +02:00
static void settingsUpdatedCb(UAVObjEvent *ev)
{
HomeLocationGet((HomeLocationData *)&homeLocation);
2013-05-19 17:11:09 +02:00
if (sane(homeLocation.Latitude) && sane(homeLocation.Longitude) && sane(homeLocation.Altitude) && sane(homeLocation.Be[0]) && sane(homeLocation.Be[1]) && sane(homeLocation.Be[2])) {
// Compute matrix to convert deltaLLA to NED
float lat, alt;
lat = DEG2RAD(homeLocation.Latitude / 10.0e6f);
alt = homeLocation.Altitude;
LLA2NEDM[0] = alt + 6.378137E6f;
LLA2NEDM[1] = cosf(lat) * (alt + 6.378137E6f);
LLA2NEDM[2] = -1.0f;
// TODO: convert positionState to new reference frame and gracefully update EKF state!
// needed for long range flights where the reference coordinate is adjusted in flight
}
RevoSettingsGet((RevoSettingsData *)&revoSettings);
2013-05-19 17:11:09 +02:00
}
/**
* Callback for eventdispatcher when any sensor UAVObject has been updated
* updates the list of "recently updated UAVObjects" and dispatches the state estimator callback
*/
2013-05-19 17:11:09 +02:00
static void sensorUpdatedCb(UAVObjEvent *ev)
{
if (!ev) {
return;
}
if (ev->obj == GyroSensorHandle()) {
updatedSensors |= gyr_UPDATED;
}
if (ev->obj == AccelSensorHandle()) {
updatedSensors |= acc_UPDATED;
}
2013-05-20 10:35:54 +02:00
if (ev->obj == MagSensorHandle()) {
2013-05-19 17:11:09 +02:00
updatedSensors |= mag_UPDATED;
}
if (ev->obj == GPSPositionHandle()) {
updatedSensors |= pos_UPDATED;
}
if (ev->obj == GPSVelocityHandle()) {
updatedSensors |= vel_UPDATED;
}
if (ev->obj == BaroSensorHandle()) {
updatedSensors |= bar_UPDATED;
}
if (ev->obj == AirspeedSensorHandle()) {
updatedSensors |= air_UPDATED;
2013-05-19 17:11:09 +02:00
}
DelayedCallbackDispatch(stateEstimationCallback);
}
/**
* @brief Convert the GPS LLA position into NED coordinates
* @note this method uses a taylor expansion around the home coordinates
* to convert to NED which allows it to be done with all floating
* calculations
* @param[in] Current GPS coordinates
* @param[out] NED frame coordinates
* @returns 0 for success, -1 for failure
*/
static void getNED(GPSPositionData *gpsPosition, float *NED)
{
float dL[3] = { DEG2RAD((gpsPosition->Latitude - homeLocation.Latitude) / 10.0e6f),
DEG2RAD((gpsPosition->Longitude - homeLocation.Longitude) / 10.0e6f),
(gpsPosition->Altitude + gpsPosition->GeoidSeparation - homeLocation.Altitude) };
NED[0] = LLA2NEDM[0] * dL[0];
NED[1] = LLA2NEDM[1] * dL[1];
NED[2] = LLA2NEDM[2] * dL[2];
}
/**
* @brief sanity check for float values
* @note makes sure a float value is safe for further processing, ie not NAN and not INF
* @param[in] float value
* @returns true for safe and false for unsafe
*/
static float sane(float value)
{
if (isnan(value) || isinf(value)) {
return false;
}
return true;
}
2013-05-19 17:11:09 +02:00
/**
* @}
* @}
*/