2011-11-14 17:49:37 +01:00
|
|
|
/**
|
|
|
|
******************************************************************************
|
|
|
|
* @addtogroup OpenPilotModules OpenPilot Modules
|
|
|
|
* @{
|
|
|
|
* @addtogroup Attitude Copter Control Attitude Estimation
|
|
|
|
* @brief Acquires sensor data and computes attitude estimate
|
|
|
|
* Specifically updates the the @ref AttitudeActual "AttitudeActual" and @ref AttitudeRaw "AttitudeRaw" settings objects
|
|
|
|
* @{
|
|
|
|
*
|
|
|
|
* @file attitude.c
|
|
|
|
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2010.
|
|
|
|
* @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
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Input objects: None, takes sensor data via pios
|
|
|
|
* Output objects: @ref AttitudeRaw @ref AttitudeActual
|
|
|
|
*
|
|
|
|
* This module computes an attitude estimate from the sensor data
|
|
|
|
*
|
|
|
|
* The module executes in its own thread.
|
|
|
|
*
|
|
|
|
* UAVObjects are automatically generated by the UAVObjectGenerator from
|
|
|
|
* the object definition XML file.
|
|
|
|
*
|
|
|
|
* Modules have no API, all communication to other modules is done through UAVObjects.
|
|
|
|
* However modules may use the API exposed by shared libraries.
|
|
|
|
* See the OpenPilot wiki for more details.
|
|
|
|
* http://www.openpilot.org/OpenPilot_Application_Architecture
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "pios.h"
|
2011-12-12 08:34:26 +01:00
|
|
|
#include "accels.h"
|
2012-02-29 16:34:11 +01:00
|
|
|
#include "attitude.h"
|
2011-11-14 17:49:37 +01:00
|
|
|
#include "attitudeactual.h"
|
|
|
|
#include "attitudesettings.h"
|
2011-12-14 08:54:06 +01:00
|
|
|
#include "baroaltitude.h"
|
2011-11-14 17:49:37 +01:00
|
|
|
#include "flightstatus.h"
|
2012-02-28 07:42:18 +01:00
|
|
|
#include "gpsposition.h"
|
2012-02-29 16:34:11 +01:00
|
|
|
#include "gyros.h"
|
|
|
|
#include "gyrosbias.h"
|
|
|
|
#include "homelocation.h"
|
|
|
|
#include "magnetometer.h"
|
|
|
|
#include "nedposition.h"
|
|
|
|
#include "positionactual.h"
|
2012-03-01 11:52:09 +01:00
|
|
|
#include "revocalibration.h"
|
2012-02-29 16:34:11 +01:00
|
|
|
#include "revosettings.h"
|
|
|
|
#include "velocityactual.h"
|
2011-11-14 17:49:37 +01:00
|
|
|
#include "CoordinateConversions.h"
|
|
|
|
|
|
|
|
// Private constants
|
2012-03-01 11:05:52 +01:00
|
|
|
#define STACK_SIZE_BYTES 2540
|
2011-11-14 17:49:37 +01:00
|
|
|
#define TASK_PRIORITY (tskIDLE_PRIORITY+3)
|
2011-12-12 21:39:38 +01:00
|
|
|
#define FAILSAFE_TIMEOUT_MS 10
|
2011-11-14 17:49:37 +01:00
|
|
|
|
2011-11-16 18:36:04 +01:00
|
|
|
#define F_PI 3.14159265358979323846f
|
2012-03-26 04:16:54 +02:00
|
|
|
#define PI_MOD(x) (fmodf(x + F_PI, F_PI * 2) - F_PI)
|
2011-11-14 17:49:37 +01:00
|
|
|
// Private types
|
|
|
|
|
|
|
|
// Private variables
|
2011-12-12 06:29:43 +01:00
|
|
|
static xTaskHandle attitudeTaskHandle;
|
|
|
|
|
|
|
|
static xQueueHandle gyroQueue;
|
|
|
|
static xQueueHandle accelQueue;
|
|
|
|
static xQueueHandle magQueue;
|
2011-12-14 08:54:06 +01:00
|
|
|
static xQueueHandle baroQueue;
|
2011-12-14 09:07:33 +01:00
|
|
|
static xQueueHandle gpsQueue;
|
2012-02-29 16:34:11 +01:00
|
|
|
|
2012-02-29 17:10:22 +01:00
|
|
|
static AttitudeSettingsData attitudeSettings;
|
2012-02-29 19:05:54 +01:00
|
|
|
static HomeLocationData homeLocation;
|
2012-03-01 11:52:09 +01:00
|
|
|
static RevoCalibrationData revoCalibration;
|
|
|
|
static RevoSettingsData revoSettings;
|
2011-12-12 06:29:43 +01:00
|
|
|
const uint32_t SENSOR_QUEUE_SIZE = 10;
|
2011-11-14 17:49:37 +01:00
|
|
|
|
|
|
|
// Private functions
|
|
|
|
static void AttitudeTask(void *parameters);
|
|
|
|
|
2011-12-12 21:39:38 +01:00
|
|
|
static int32_t updateAttitudeComplimentary(bool first_run);
|
2012-02-29 16:34:11 +01:00
|
|
|
static int32_t updateAttitudeINSGPS(bool first_run, bool outdoor_mode);
|
2011-11-14 17:49:37 +01:00
|
|
|
static void settingsUpdatedCb(UAVObjEvent * objEv);
|
|
|
|
|
2012-02-29 19:05:54 +01:00
|
|
|
static int32_t getNED(GPSPositionData * gpsPosition, float * NED);
|
|
|
|
|
2011-12-12 08:34:26 +01:00
|
|
|
/**
|
|
|
|
* API for sensor fusion algorithms:
|
|
|
|
* Configure(xQueueHandle gyro, xQueueHandle accel, xQueueHandle mag, xQueueHandle baro)
|
|
|
|
* Stores all the queues the algorithm will pull data from
|
|
|
|
* FinalizeSensors() -- before saving the sensors modifies them based on internal state (gyro bias)
|
|
|
|
* Update() -- queries queues and updates the attitude estiamte
|
|
|
|
*/
|
2011-12-12 06:29:43 +01:00
|
|
|
|
2011-11-14 17:49:37 +01:00
|
|
|
|
|
|
|
/**
|
2011-12-12 21:39:38 +01:00
|
|
|
* Initialise the module. Called before the start function
|
2011-11-14 17:49:37 +01:00
|
|
|
* \returns 0 on success or -1 if initialisation failed
|
|
|
|
*/
|
|
|
|
int32_t AttitudeInitialize(void)
|
|
|
|
{
|
|
|
|
AttitudeActualInitialize();
|
|
|
|
AttitudeSettingsInitialize();
|
2012-02-29 05:49:17 +01:00
|
|
|
NEDPositionInitialize();
|
2011-12-14 09:07:33 +01:00
|
|
|
PositionActualInitialize();
|
|
|
|
VelocityActualInitialize();
|
2012-02-29 23:13:15 +01:00
|
|
|
RevoSettingsInitialize();
|
2011-11-14 17:49:37 +01:00
|
|
|
|
2011-12-14 21:08:03 +01:00
|
|
|
// Initialize this here while we aren't setting the homelocation in GPS
|
|
|
|
HomeLocationInitialize();
|
2012-03-11 20:39:31 +01:00
|
|
|
|
2011-11-14 17:49:37 +01:00
|
|
|
// Initialize quaternion
|
|
|
|
AttitudeActualData attitude;
|
|
|
|
AttitudeActualGet(&attitude);
|
|
|
|
attitude.q1 = 1;
|
|
|
|
attitude.q2 = 0;
|
|
|
|
attitude.q3 = 0;
|
|
|
|
attitude.q4 = 0;
|
|
|
|
AttitudeActualSet(&attitude);
|
2011-12-12 21:39:38 +01:00
|
|
|
|
2011-11-14 17:49:37 +01:00
|
|
|
// Cannot trust the values to init right above if BL runs
|
2011-12-12 21:39:38 +01:00
|
|
|
GyrosBiasData gyrosBias;
|
|
|
|
GyrosBiasGet(&gyrosBias);
|
|
|
|
gyrosBias.x = 0;
|
|
|
|
gyrosBias.y = 0;
|
|
|
|
gyrosBias.z = 0;
|
|
|
|
GyrosBiasSet(&gyrosBias);
|
|
|
|
|
2011-11-14 17:49:37 +01:00
|
|
|
AttitudeSettingsConnectCallback(&settingsUpdatedCb);
|
2012-02-29 16:34:11 +01:00
|
|
|
RevoSettingsConnectCallback(&settingsUpdatedCb);
|
2012-02-29 19:05:54 +01:00
|
|
|
HomeLocationConnectCallback(&settingsUpdatedCb);
|
|
|
|
|
2011-11-14 17:49:37 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-12-12 21:39:38 +01:00
|
|
|
* Start the task. Expects all objects to be initialized by this point.
|
|
|
|
* \returns 0 on success or -1 if initialisation failed
|
2011-11-14 17:49:37 +01:00
|
|
|
*/
|
2011-12-12 21:39:38 +01:00
|
|
|
int32_t AttitudeStart(void)
|
2011-11-14 17:49:37 +01:00
|
|
|
{
|
2011-12-12 21:39:38 +01:00
|
|
|
// Create the queues for the sensors
|
|
|
|
gyroQueue = xQueueCreate(1, sizeof(UAVObjEvent));
|
2011-12-14 08:54:06 +01:00
|
|
|
accelQueue = xQueueCreate(1, sizeof(UAVObjEvent));
|
|
|
|
magQueue = xQueueCreate(1, sizeof(UAVObjEvent));
|
|
|
|
baroQueue = xQueueCreate(1, sizeof(UAVObjEvent));
|
2011-12-14 09:07:33 +01:00
|
|
|
gpsQueue = xQueueCreate(1, sizeof(UAVObjEvent));
|
2012-02-28 07:42:18 +01:00
|
|
|
|
2011-12-12 21:39:38 +01:00
|
|
|
// Start main task
|
|
|
|
xTaskCreate(AttitudeTask, (signed char *)"Attitude", STACK_SIZE_BYTES/4, NULL, TASK_PRIORITY, &attitudeTaskHandle);
|
|
|
|
TaskMonitorAdd(TASKINFO_RUNNING_ATTITUDE, attitudeTaskHandle);
|
|
|
|
PIOS_WDG_RegisterFlag(PIOS_WDG_ATTITUDE);
|
2011-12-12 06:29:43 +01:00
|
|
|
|
2011-12-12 21:39:38 +01:00
|
|
|
GyrosConnectQueue(gyroQueue);
|
2011-12-14 08:54:06 +01:00
|
|
|
AccelsConnectQueue(accelQueue);
|
|
|
|
MagnetometerConnectQueue(magQueue);
|
|
|
|
BaroAltitudeConnectQueue(baroQueue);
|
2011-12-14 09:07:33 +01:00
|
|
|
GPSPositionConnectQueue(gpsQueue);
|
|
|
|
|
2011-12-12 21:39:38 +01:00
|
|
|
return 0;
|
2011-12-12 06:29:43 +01:00
|
|
|
}
|
|
|
|
|
2011-12-12 21:39:38 +01:00
|
|
|
MODULE_INITCALL(AttitudeInitialize, AttitudeStart)
|
|
|
|
|
2011-12-12 06:29:43 +01:00
|
|
|
/**
|
|
|
|
* Module thread, should not return.
|
|
|
|
*/
|
|
|
|
static void AttitudeTask(void *parameters)
|
|
|
|
{
|
2012-02-29 17:10:22 +01:00
|
|
|
bool first_run;
|
|
|
|
uint32_t last_algorithm;
|
2011-12-12 06:29:43 +01:00
|
|
|
AlarmsClear(SYSTEMALARMS_ALARM_ATTITUDE);
|
|
|
|
|
|
|
|
// Force settings update to make sure rotation loaded
|
|
|
|
settingsUpdatedCb(AttitudeSettingsHandle());
|
2012-02-29 16:34:11 +01:00
|
|
|
settingsUpdatedCb(RevoSettingsHandle());
|
|
|
|
|
2011-12-14 08:54:06 +01:00
|
|
|
// Wait for all the sensors be to read
|
|
|
|
vTaskDelay(100);
|
2012-02-29 16:34:11 +01:00
|
|
|
|
|
|
|
// Invalidate previous algorithm to trigger a first run
|
|
|
|
last_algorithm = 0xfffffff;
|
|
|
|
|
2011-12-12 06:29:43 +01:00
|
|
|
// Main task loop
|
|
|
|
while (1) {
|
2012-02-28 07:42:18 +01:00
|
|
|
|
2012-02-29 16:34:11 +01:00
|
|
|
if (last_algorithm != revoSettings.FusionAlgorithm) {
|
|
|
|
last_algorithm = revoSettings.FusionAlgorithm;
|
|
|
|
first_run = true;
|
|
|
|
}
|
|
|
|
|
2011-12-12 06:29:43 +01:00
|
|
|
// This function blocks on data queue
|
2012-02-29 16:34:11 +01:00
|
|
|
switch (revoSettings.FusionAlgorithm ) {
|
|
|
|
case REVOSETTINGS_FUSIONALGORITHM_COMPLIMENTARY:
|
|
|
|
updateAttitudeComplimentary(first_run);
|
|
|
|
break;
|
|
|
|
case REVOSETTINGS_FUSIONALGORITHM_INSOUTDOOR:
|
|
|
|
updateAttitudeINSGPS(first_run, true);
|
|
|
|
break;
|
|
|
|
case REVOSETTINGS_FUSIONALGORITHM_INSINDOOR:
|
|
|
|
updateAttitudeINSGPS(first_run, false);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
AlarmsSet(SYSTEMALARMS_ALARM_ATTITUDE,SYSTEMALARMS_ALARM_ERROR);
|
|
|
|
break;
|
|
|
|
}
|
2012-02-28 07:42:18 +01:00
|
|
|
|
2012-02-29 16:34:11 +01:00
|
|
|
first_run = false;
|
2012-02-28 07:42:18 +01:00
|
|
|
|
2011-12-12 21:39:38 +01:00
|
|
|
PIOS_WDG_UpdateFlag(PIOS_WDG_ATTITUDE);
|
2011-11-14 17:49:37 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-11-16 18:36:04 +01:00
|
|
|
float accel_mag;
|
|
|
|
float qmag;
|
2011-12-15 07:56:50 +01:00
|
|
|
float attitudeDt;
|
|
|
|
float mag_err[3];
|
|
|
|
float magKi = 0.000001f;
|
|
|
|
float magKp = 0.0001f;
|
|
|
|
|
2011-12-12 21:39:38 +01:00
|
|
|
static int32_t updateAttitudeComplimentary(bool first_run)
|
2011-11-14 17:49:37 +01:00
|
|
|
{
|
2011-12-12 21:39:38 +01:00
|
|
|
UAVObjEvent ev;
|
2011-12-12 20:28:04 +01:00
|
|
|
GyrosData gyrosData;
|
|
|
|
AccelsData accelsData;
|
2011-12-12 21:39:38 +01:00
|
|
|
static int32_t timeval;
|
|
|
|
float dT;
|
|
|
|
static uint8_t init = 0;
|
|
|
|
|
|
|
|
// Wait until the AttitudeRaw object is updated, if a timeout then go to failsafe
|
|
|
|
if ( xQueueReceive(gyroQueue, &ev, FAILSAFE_TIMEOUT_MS / portTICK_RATE_MS) != pdTRUE )
|
|
|
|
{
|
2011-12-14 08:54:06 +01:00
|
|
|
AlarmsSet(SYSTEMALARMS_ALARM_ATTITUDE,SYSTEMALARMS_ALARM_WARNING);
|
2011-12-12 20:28:04 +01:00
|
|
|
return -1;
|
2011-12-12 06:29:43 +01:00
|
|
|
}
|
2012-02-07 15:46:34 +01:00
|
|
|
if ( xQueueReceive(accelQueue, &ev, 0) != pdTRUE )
|
|
|
|
{
|
|
|
|
// When one of these is updated so should the other
|
|
|
|
AlarmsSet(SYSTEMALARMS_ALARM_ATTITUDE,SYSTEMALARMS_ALARM_WARNING);
|
|
|
|
return -1;
|
|
|
|
}
|
2011-12-12 21:39:38 +01:00
|
|
|
|
|
|
|
// During initialization and
|
|
|
|
FlightStatusData flightStatus;
|
|
|
|
FlightStatusGet(&flightStatus);
|
|
|
|
if(first_run)
|
|
|
|
init = 0;
|
|
|
|
|
|
|
|
if((init == 0 && xTaskGetTickCount() < 7000) && (xTaskGetTickCount() > 1000)) {
|
|
|
|
// For first 7 seconds use accels to get gyro bias
|
2012-02-29 17:10:22 +01:00
|
|
|
attitudeSettings.AccelKp = 1;
|
|
|
|
attitudeSettings.AccelKi = 0.9;
|
|
|
|
attitudeSettings.YawBiasRate = 0.23;
|
|
|
|
} else if ((attitudeSettings.ZeroDuringArming == ATTITUDESETTINGS_ZERODURINGARMING_TRUE) && (flightStatus.Armed == FLIGHTSTATUS_ARMED_ARMING)) {
|
|
|
|
attitudeSettings.AccelKp = 1;
|
|
|
|
attitudeSettings.AccelKi = 0.9;
|
|
|
|
attitudeSettings.YawBiasRate = 0.23;
|
2011-12-12 21:39:38 +01:00
|
|
|
init = 0;
|
|
|
|
} else if (init == 0) {
|
|
|
|
// Reload settings (all the rates)
|
2012-02-29 17:10:22 +01:00
|
|
|
AttitudeSettingsGet(&attitudeSettings);
|
2011-12-12 21:39:38 +01:00
|
|
|
init = 1;
|
|
|
|
}
|
2012-02-28 07:42:18 +01:00
|
|
|
|
2011-12-12 21:39:38 +01:00
|
|
|
GyrosGet(&gyrosData);
|
|
|
|
AccelsGet(&accelsData);
|
2011-12-12 06:29:43 +01:00
|
|
|
|
2011-12-12 21:39:38 +01:00
|
|
|
// Compute the dT using the cpu clock
|
|
|
|
dT = PIOS_DELAY_DiffuS(timeval) / 1000000.0f;
|
2011-11-27 08:22:37 +01:00
|
|
|
timeval = PIOS_DELAY_GetRaw();
|
2012-02-28 07:42:18 +01:00
|
|
|
|
2011-11-16 18:36:04 +01:00
|
|
|
float q[4];
|
2012-02-28 07:42:18 +01:00
|
|
|
|
2011-11-16 18:36:04 +01:00
|
|
|
AttitudeActualData attitudeActual;
|
|
|
|
AttitudeActualGet(&attitudeActual);
|
2011-11-14 17:49:37 +01:00
|
|
|
|
2011-11-16 18:36:04 +01:00
|
|
|
float grot[3];
|
|
|
|
float accel_err[3];
|
2012-02-28 07:42:18 +01:00
|
|
|
|
2011-11-16 18:36:04 +01:00
|
|
|
// Get the current attitude estimate
|
|
|
|
quat_copy(&attitudeActual.q1, q);
|
2012-02-28 07:42:18 +01:00
|
|
|
|
2011-11-16 18:36:04 +01:00
|
|
|
// Rotate gravity to body frame and cross with accels
|
|
|
|
grot[0] = -(2 * (q[1] * q[3] - q[0] * q[2]));
|
|
|
|
grot[1] = -(2 * (q[2] * q[3] + q[0] * q[1]));
|
|
|
|
grot[2] = -(q[0] * q[0] - q[1]*q[1] - q[2]*q[2] + q[3]*q[3]);
|
2011-12-12 20:28:04 +01:00
|
|
|
CrossProduct((const float *) &accelsData.x, (const float *) grot, accel_err);
|
2011-11-16 18:36:04 +01:00
|
|
|
|
|
|
|
// Account for accel magnitude
|
2011-12-12 20:28:04 +01:00
|
|
|
accel_mag = accelsData.x*accelsData.x + accelsData.y*accelsData.y + accelsData.z*accelsData.z;
|
2011-11-16 18:36:04 +01:00
|
|
|
accel_mag = sqrtf(accel_mag);
|
|
|
|
accel_err[0] /= accel_mag;
|
|
|
|
accel_err[1] /= accel_mag;
|
|
|
|
accel_err[2] /= accel_mag;
|
2012-02-28 07:42:18 +01:00
|
|
|
|
2012-02-07 15:46:34 +01:00
|
|
|
if ( xQueueReceive(magQueue, &ev, 0) != pdTRUE )
|
|
|
|
{
|
2011-12-15 07:56:50 +01:00
|
|
|
// Rotate gravity to body frame and cross with accels
|
|
|
|
float brot[3];
|
|
|
|
float Rbe[3][3];
|
|
|
|
MagnetometerData mag;
|
|
|
|
HomeLocationData home;
|
|
|
|
|
|
|
|
Quaternion2R(q, Rbe);
|
|
|
|
MagnetometerGet(&mag);
|
|
|
|
HomeLocationGet(&home);
|
|
|
|
rot_mult(Rbe, home.Be, brot);
|
2012-02-28 07:42:18 +01:00
|
|
|
|
2011-12-15 07:56:50 +01:00
|
|
|
float mag_len = sqrtf(mag.x * mag.x + mag.y * mag.y + mag.z * mag.z);
|
|
|
|
mag.x /= mag_len;
|
|
|
|
mag.y /= mag_len;
|
|
|
|
mag.z /= mag_len;
|
2012-02-28 07:42:18 +01:00
|
|
|
|
2011-12-15 07:56:50 +01:00
|
|
|
float bmag = sqrtf(brot[0] * brot[0] + brot[1] * brot[1] + brot[2] * brot[2]);
|
|
|
|
brot[0] /= bmag;
|
|
|
|
brot[1] /= bmag;
|
|
|
|
brot[2] /= bmag;
|
2012-02-28 07:42:18 +01:00
|
|
|
|
2011-12-15 07:56:50 +01:00
|
|
|
// Only compute if neither vector is null
|
|
|
|
if (bmag < 1 || mag_len < 1)
|
|
|
|
mag_err[0] = mag_err[1] = mag_err[2] = 0;
|
|
|
|
else
|
|
|
|
CrossProduct((const float *) &mag.x, (const float *) brot, mag_err);
|
|
|
|
} else {
|
|
|
|
mag_err[0] = mag_err[1] = mag_err[2] = 0;
|
|
|
|
}
|
2012-02-28 07:42:18 +01:00
|
|
|
|
2011-11-16 18:36:04 +01:00
|
|
|
// Accumulate integral of error. Scale here so that units are (deg/s) but Ki has units of s
|
2011-12-12 21:39:38 +01:00
|
|
|
GyrosBiasData gyrosBias;
|
|
|
|
GyrosBiasGet(&gyrosBias);
|
2012-02-29 17:10:22 +01:00
|
|
|
gyrosBias.x += accel_err[0] * attitudeSettings.AccelKi;
|
|
|
|
gyrosBias.y += accel_err[1] * attitudeSettings.AccelKi;
|
2011-12-15 07:56:50 +01:00
|
|
|
gyrosBias.z += mag_err[2] * magKi;
|
2011-12-12 21:39:38 +01:00
|
|
|
GyrosBiasSet(&gyrosBias);
|
|
|
|
|
2011-11-16 18:36:04 +01:00
|
|
|
// Correct rates based on error, integral component dealt with in updateSensors
|
2012-02-29 17:10:22 +01:00
|
|
|
gyrosData.x += accel_err[0] * attitudeSettings.AccelKp / dT;
|
|
|
|
gyrosData.y += accel_err[1] * attitudeSettings.AccelKp / dT;
|
|
|
|
gyrosData.z += accel_err[2] * attitudeSettings.AccelKp / dT + mag_err[2] * magKp / dT;
|
2011-12-12 06:29:43 +01:00
|
|
|
|
2011-11-16 18:36:04 +01:00
|
|
|
// Work out time derivative from INSAlgo writeup
|
|
|
|
// Also accounts for the fact that gyros are in deg/s
|
|
|
|
float qdot[4];
|
2011-12-12 20:28:04 +01:00
|
|
|
qdot[0] = (-q[1] * gyrosData.x - q[2] * gyrosData.y - q[3] * gyrosData.z) * dT * F_PI / 180 / 2;
|
|
|
|
qdot[1] = (q[0] * gyrosData.x - q[3] * gyrosData.y + q[2] * gyrosData.z) * dT * F_PI / 180 / 2;
|
|
|
|
qdot[2] = (q[3] * gyrosData.x + q[0] * gyrosData.y - q[1] * gyrosData.z) * dT * F_PI / 180 / 2;
|
|
|
|
qdot[3] = (-q[2] * gyrosData.x + q[1] * gyrosData.y + q[0] * gyrosData.z) * dT * F_PI / 180 / 2;
|
2012-02-28 07:42:18 +01:00
|
|
|
|
2011-11-16 18:36:04 +01:00
|
|
|
// Take a time step
|
|
|
|
q[0] = q[0] + qdot[0];
|
|
|
|
q[1] = q[1] + qdot[1];
|
|
|
|
q[2] = q[2] + qdot[2];
|
|
|
|
q[3] = q[3] + qdot[3];
|
2012-02-28 07:42:18 +01:00
|
|
|
|
2011-11-16 18:36:04 +01:00
|
|
|
if(q[0] < 0) {
|
|
|
|
q[0] = -q[0];
|
|
|
|
q[1] = -q[1];
|
|
|
|
q[2] = -q[2];
|
|
|
|
q[3] = -q[3];
|
2011-11-14 17:49:37 +01:00
|
|
|
}
|
2012-02-28 07:42:18 +01:00
|
|
|
|
2011-11-14 17:49:37 +01:00
|
|
|
// Renomalize
|
2011-11-16 18:36:04 +01:00
|
|
|
qmag = sqrtf(q[0]*q[0] + q[1]*q[1] + q[2]*q[2] + q[3]*q[3]);
|
2011-11-14 17:49:37 +01:00
|
|
|
q[0] = q[0] / qmag;
|
|
|
|
q[1] = q[1] / qmag;
|
|
|
|
q[2] = q[2] / qmag;
|
|
|
|
q[3] = q[3] / qmag;
|
|
|
|
|
|
|
|
// If quaternion has become inappropriately short or is nan reinit.
|
|
|
|
// THIS SHOULD NEVER ACTUALLY HAPPEN
|
2011-11-16 18:36:04 +01:00
|
|
|
if((fabs(qmag) < 1.0e-3f) || (qmag != qmag)) {
|
2011-11-14 17:49:37 +01:00
|
|
|
q[0] = 1;
|
|
|
|
q[1] = 0;
|
|
|
|
q[2] = 0;
|
|
|
|
q[3] = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
quat_copy(q, &attitudeActual.q1);
|
|
|
|
|
|
|
|
// Convert into eueler degrees (makes assumptions about RPY order)
|
|
|
|
Quaternion2RPY(&attitudeActual.q1,&attitudeActual.Roll);
|
|
|
|
|
|
|
|
AttitudeActualSet(&attitudeActual);
|
2012-02-28 07:42:18 +01:00
|
|
|
|
2012-02-07 15:46:34 +01:00
|
|
|
// Flush these queues for avoid errors
|
|
|
|
if ( xQueueReceive(baroQueue, &ev, 0) != pdTRUE )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
if ( xQueueReceive(gpsQueue, &ev, 0) != pdTRUE )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2011-12-12 06:29:43 +01:00
|
|
|
AlarmsClear(SYSTEMALARMS_ALARM_ATTITUDE);
|
|
|
|
|
2011-12-12 20:28:04 +01:00
|
|
|
return 0;
|
2011-11-14 17:49:37 +01:00
|
|
|
}
|
|
|
|
|
2011-12-14 08:54:06 +01:00
|
|
|
#include "insgps.h"
|
|
|
|
int32_t ins_failed = 0;
|
|
|
|
extern struct NavStruct Nav;
|
2012-02-28 07:42:18 +01:00
|
|
|
int32_t init_stage = 0;
|
|
|
|
|
2012-02-29 16:34:11 +01:00
|
|
|
/**
|
|
|
|
* @brief Use the INSGPS fusion algorithm in either indoor or outdoor mode (use GPS)
|
|
|
|
* @params[in] first_run This is the first run so trigger reinitialization
|
|
|
|
* @params[in] outdoor_mode If true use the GPS for position, if false weakly pull to (0,0)
|
|
|
|
* @return 0 for success, -1 for failure
|
|
|
|
*/
|
|
|
|
static int32_t updateAttitudeINSGPS(bool first_run, bool outdoor_mode)
|
2011-12-14 08:54:06 +01:00
|
|
|
{
|
|
|
|
UAVObjEvent ev;
|
|
|
|
GyrosData gyrosData;
|
|
|
|
AccelsData accelsData;
|
|
|
|
MagnetometerData magData;
|
|
|
|
BaroAltitudeData baroData;
|
2012-02-28 07:42:18 +01:00
|
|
|
GPSPositionData gpsData;
|
|
|
|
GyrosBiasData gyrosBias;
|
2012-02-28 09:37:59 +01:00
|
|
|
HomeLocationData home;
|
2011-12-14 08:54:06 +01:00
|
|
|
|
2012-02-28 07:42:18 +01:00
|
|
|
static bool mag_updated;
|
|
|
|
static bool baro_updated;
|
|
|
|
static bool gps_updated;
|
|
|
|
|
|
|
|
static uint32_t ins_last_time = 0;
|
2011-12-14 08:54:06 +01:00
|
|
|
static bool inited;
|
2012-02-28 07:42:18 +01:00
|
|
|
|
|
|
|
float NED[3] = {0.0f, 0.0f, 0.0f};
|
|
|
|
float vel[3] = {0.0f, 0.0f, 0.0f};
|
|
|
|
float zeros[3] = {0.0f, 0.0f, 0.0f};
|
|
|
|
|
|
|
|
// Perform the update
|
|
|
|
uint16_t sensors = 0;
|
|
|
|
float dT;
|
|
|
|
|
|
|
|
inited = first_run ? false : inited;
|
|
|
|
|
2011-12-14 08:54:06 +01:00
|
|
|
// Wait until the gyro and accel object is updated, if a timeout then go to failsafe
|
|
|
|
if ( (xQueueReceive(gyroQueue, &ev, 10 / portTICK_RATE_MS) != pdTRUE) ||
|
|
|
|
(xQueueReceive(accelQueue, &ev, 10 / portTICK_RATE_MS) != pdTRUE) )
|
|
|
|
{
|
|
|
|
AlarmsSet(SYSTEMALARMS_ALARM_ATTITUDE,SYSTEMALARMS_ALARM_WARNING);
|
|
|
|
return -1;
|
|
|
|
}
|
2012-02-28 07:42:18 +01:00
|
|
|
|
2011-12-14 08:54:06 +01:00
|
|
|
if (inited) {
|
|
|
|
mag_updated = 0;
|
|
|
|
baro_updated = 0;
|
2012-02-28 07:42:18 +01:00
|
|
|
gps_updated = 0;
|
2011-12-14 08:54:06 +01:00
|
|
|
}
|
2012-02-28 07:42:18 +01:00
|
|
|
|
2011-12-14 08:54:06 +01:00
|
|
|
mag_updated |= xQueueReceive(magQueue, &ev, 0 / portTICK_RATE_MS) == pdTRUE;
|
|
|
|
baro_updated |= xQueueReceive(baroQueue, &ev, 0 / portTICK_RATE_MS) == pdTRUE;
|
2012-02-28 07:42:18 +01:00
|
|
|
gps_updated |= (xQueueReceive(gpsQueue, &ev, 0 / portTICK_RATE_MS) == pdTRUE) && outdoor_mode;
|
|
|
|
|
|
|
|
// Get most recent data
|
|
|
|
GyrosGet(&gyrosData);
|
|
|
|
AccelsGet(&accelsData);
|
|
|
|
MagnetometerGet(&magData);
|
|
|
|
BaroAltitudeGet(&baroData);
|
|
|
|
GPSPositionGet(&gpsData);
|
2012-02-28 09:37:59 +01:00
|
|
|
HomeLocationGet(&home);
|
2012-02-28 07:42:18 +01:00
|
|
|
|
|
|
|
// Have a minimum requirement for gps usage
|
2012-02-28 16:43:08 +01:00
|
|
|
gps_updated &= (gpsData.Satellites >= 7) && (gpsData.PDOP <= 4.0f);
|
2012-02-28 07:42:18 +01:00
|
|
|
|
|
|
|
if (!inited)
|
|
|
|
AlarmsSet(SYSTEMALARMS_ALARM_ATTITUDE,SYSTEMALARMS_ALARM_ERROR);
|
|
|
|
else if (outdoor_mode && gpsData.Satellites < 7)
|
|
|
|
AlarmsSet(SYSTEMALARMS_ALARM_ATTITUDE,SYSTEMALARMS_ALARM_ERROR);
|
|
|
|
else
|
|
|
|
AlarmsClear(SYSTEMALARMS_ALARM_ATTITUDE);
|
2012-03-01 11:52:09 +01:00
|
|
|
|
2012-02-28 07:42:18 +01:00
|
|
|
if (!inited && mag_updated && baro_updated && (gps_updated || !outdoor_mode)) {
|
2011-12-14 08:54:06 +01:00
|
|
|
// Don't initialize until all sensors are read
|
2012-02-28 07:42:18 +01:00
|
|
|
if (init_stage == 0 && !outdoor_mode) {
|
|
|
|
float Pdiag[16]={25.0f,25.0f,25.0f,5.0f,5.0f,5.0f,1e-5f,1e-5f,1e-5f,1e-5f,1e-5f,1e-5f,1e-5f,1e-4f,1e-4f,1e-4f};
|
|
|
|
float q[4];
|
|
|
|
float pos[3] = {0.0f, 0.0f, 0.0f};
|
|
|
|
pos[2] = baroData.Altitude * -1.0f;
|
|
|
|
|
|
|
|
// Reset the INS algorithm
|
|
|
|
INSGPSInit();
|
2012-03-01 11:52:09 +01:00
|
|
|
INSSetMagVar(revoCalibration.mag_var);
|
|
|
|
INSSetAccelVar(revoCalibration.accel_var);
|
|
|
|
INSSetGyroVar(revoCalibration.gyro_var);
|
2012-02-28 07:42:18 +01:00
|
|
|
|
|
|
|
// Set initial attitude
|
|
|
|
float rpy[3];
|
|
|
|
rpy[0] = atan2f(accelsData.x, accelsData.z) * 180.0f / F_PI;
|
|
|
|
rpy[1] = atan2f(accelsData.y, accelsData.z) * 180.0f / F_PI;
|
|
|
|
rpy[2] = atan2f(magData.x, -magData.y) * 180.0f / F_PI;
|
|
|
|
RPY2Quaternion(rpy,q);
|
2012-02-28 09:37:59 +01:00
|
|
|
/*float Rbe[3][3];
|
|
|
|
float ge[3] = {0,0,-9.81f};
|
|
|
|
RotFrom2Vectors(&accelsData.x, ge, &magData.x, home.Be, Rbe);
|
|
|
|
R2Quaternion(Rbe,q);*/
|
2012-02-28 07:42:18 +01:00
|
|
|
|
|
|
|
INSSetState(pos, zeros, q, zeros, zeros);
|
|
|
|
INSResetP(Pdiag);
|
|
|
|
} else if (init_stage == 0 && outdoor_mode) {
|
|
|
|
float q[4], rpy[3];
|
|
|
|
float Pdiag[16]={25.0f,25.0f,25.0f,5.0f,5.0f,5.0f,1e-5f,1e-5f,1e-5f,1e-5f,1e-5f,1e-5f,1e-5f,1e-4f,1e-4f,1e-4f};
|
|
|
|
float NED[3];
|
|
|
|
|
|
|
|
// Reset the INS algorithm
|
|
|
|
INSGPSInit();
|
2012-03-01 11:52:09 +01:00
|
|
|
INSSetMagVar(revoCalibration.mag_var);
|
|
|
|
INSSetAccelVar(revoCalibration.accel_var);
|
|
|
|
INSSetGyroVar(revoCalibration.gyro_var);
|
2012-02-28 07:42:18 +01:00
|
|
|
|
|
|
|
INSSetMagNorth(home.Be);
|
|
|
|
|
|
|
|
GPSPositionData gpsPosition;
|
|
|
|
GPSPositionGet(&gpsPosition);
|
|
|
|
|
|
|
|
// convert from cm back to meters
|
|
|
|
float LLA[3] = {(float) gpsPosition.Latitude / 1e7f,
|
|
|
|
(float) gpsPosition.Longitude / 1e7f,
|
|
|
|
(float) (gpsPosition.GeoidSeparation + gpsPosition.Altitude)};
|
|
|
|
// put in local NED frame
|
|
|
|
float ECEF[3] = {(float) (home.ECEF[0] / 100.0f),
|
|
|
|
(float) (home.ECEF[1] / 100.0f),
|
|
|
|
(float) (home.ECEF[2] / 100.0f)};
|
|
|
|
LLA2Base(LLA, ECEF, (float (*)[3]) home.RNE, NED);
|
|
|
|
|
|
|
|
// Set initial attitude
|
|
|
|
rpy[0] = atan2f(accelsData.x, accelsData.z) * 180.0f / F_PI;
|
|
|
|
rpy[1] = atan2f(accelsData.y, accelsData.z) * 180.0f / F_PI;
|
|
|
|
rpy[2] = atan2f(magData.x, -magData.y) * 180.0f / F_PI;
|
|
|
|
RPY2Quaternion(rpy,q);
|
|
|
|
|
|
|
|
INSSetState(NED, zeros, q, zeros, zeros);
|
|
|
|
INSResetP(Pdiag);
|
|
|
|
} else if (init_stage > 0) {
|
|
|
|
// Run prediction a bit before any corrections
|
|
|
|
GyrosBiasGet(&gyrosBias);
|
|
|
|
float gyros[3] = {(gyrosData.x + gyrosBias.x) * F_PI / 180.0f,
|
|
|
|
(gyrosData.y + gyrosBias.y) * F_PI / 180.0f,
|
|
|
|
(gyrosData.z + gyrosBias.z) * F_PI / 180.0f};
|
|
|
|
INSStatePrediction(gyros, &accelsData.x, 0.002f);
|
|
|
|
}
|
|
|
|
|
|
|
|
init_stage++;
|
2012-02-28 09:37:59 +01:00
|
|
|
if(init_stage > 10)
|
2012-02-28 07:42:18 +01:00
|
|
|
inited = true;
|
2011-12-14 09:07:33 +01:00
|
|
|
|
2011-12-14 08:54:06 +01:00
|
|
|
ins_last_time = PIOS_DELAY_GetRaw();
|
2012-02-28 07:42:18 +01:00
|
|
|
|
|
|
|
return -1;
|
2011-12-14 08:54:06 +01:00
|
|
|
}
|
2012-02-28 07:42:18 +01:00
|
|
|
|
|
|
|
if (!inited)
|
|
|
|
return -1;
|
|
|
|
|
2011-12-14 08:54:06 +01:00
|
|
|
dT = PIOS_DELAY_DiffuS(ins_last_time) / 1.0e6f;
|
|
|
|
ins_last_time = PIOS_DELAY_GetRaw();
|
2012-02-28 07:42:18 +01:00
|
|
|
|
2011-12-14 08:54:06 +01:00
|
|
|
// This should only happen at start up or at mode switches
|
|
|
|
if(dT > 0.01f)
|
|
|
|
dT = 0.01f;
|
|
|
|
else if(dT <= 0.001f)
|
|
|
|
dT = 0.001f;
|
2011-12-14 09:07:33 +01:00
|
|
|
|
2012-02-28 07:42:18 +01:00
|
|
|
// Because the sensor module remove the bias we need to add it
|
|
|
|
// back in here so that the INS algorithm can track it correctly
|
|
|
|
GyrosBiasGet(&gyrosBias);
|
2011-12-14 09:07:33 +01:00
|
|
|
float gyros[3] = {(gyrosData.x + gyrosBias.x) * F_PI / 180.0f,
|
|
|
|
(gyrosData.y + gyrosBias.y) * F_PI / 180.0f,
|
|
|
|
(gyrosData.z + gyrosBias.z) * F_PI / 180.0f};
|
2012-02-28 07:42:18 +01:00
|
|
|
|
2011-12-14 08:54:06 +01:00
|
|
|
// Advance the state estimate
|
|
|
|
INSStatePrediction(gyros, &accelsData.x, dT);
|
2012-02-28 07:42:18 +01:00
|
|
|
|
2011-12-14 09:07:33 +01:00
|
|
|
// Copy the attitude into the UAVO
|
2011-12-14 08:54:06 +01:00
|
|
|
AttitudeActualData attitude;
|
|
|
|
AttitudeActualGet(&attitude);
|
|
|
|
attitude.q1 = Nav.q[0];
|
|
|
|
attitude.q2 = Nav.q[1];
|
|
|
|
attitude.q3 = Nav.q[2];
|
|
|
|
attitude.q4 = Nav.q[3];
|
|
|
|
Quaternion2RPY(&attitude.q1,&attitude.Roll);
|
|
|
|
AttitudeActualSet(&attitude);
|
2012-02-28 07:42:18 +01:00
|
|
|
|
2011-12-14 09:07:33 +01:00
|
|
|
// Copy the gyro bias into the UAVO
|
|
|
|
gyrosBias.x = Nav.gyro_bias[0];
|
|
|
|
gyrosBias.y = Nav.gyro_bias[1];
|
|
|
|
gyrosBias.z = Nav.gyro_bias[2];
|
|
|
|
GyrosBiasSet(&gyrosBias);
|
2012-02-28 07:42:18 +01:00
|
|
|
|
2011-12-14 08:54:06 +01:00
|
|
|
// Advance the covariance estimate
|
|
|
|
INSCovariancePrediction(dT);
|
2012-02-28 07:42:18 +01:00
|
|
|
|
2012-02-28 09:37:59 +01:00
|
|
|
if(mag_updated)
|
|
|
|
sensors |= MAG_SENSORS;
|
2012-02-28 07:42:18 +01:00
|
|
|
|
2011-12-14 08:54:06 +01:00
|
|
|
if(baro_updated)
|
|
|
|
sensors |= BARO_SENSOR;
|
|
|
|
|
2012-02-28 07:42:18 +01:00
|
|
|
INSSetMagNorth(home.Be);
|
|
|
|
|
|
|
|
if(gps_updated && outdoor_mode)
|
2011-12-14 09:07:33 +01:00
|
|
|
{
|
2012-02-28 16:43:08 +01:00
|
|
|
INSSetPosVelVar(1e-2f, 1e-2f);
|
|
|
|
sensors = POS_SENSORS | HORIZ_SENSORS;
|
2011-12-14 09:07:33 +01:00
|
|
|
GPSPositionData gpsPosition;
|
|
|
|
GPSPositionGet(&gpsPosition);
|
2012-02-28 07:42:18 +01:00
|
|
|
|
2011-12-14 09:07:33 +01:00
|
|
|
vel[0] = gpsPosition.Groundspeed * cosf(gpsPosition.Heading * F_PI / 180.0f);
|
|
|
|
vel[1] = gpsPosition.Groundspeed * sinf(gpsPosition.Heading * F_PI / 180.0f);
|
|
|
|
vel[2] = 0;
|
|
|
|
|
2012-02-29 19:05:54 +01:00
|
|
|
// Transform the GPS position into NED coordinates
|
|
|
|
getNED(&gpsPosition, NED);
|
2012-02-29 05:49:17 +01:00
|
|
|
|
|
|
|
// Store this for inspecting offline
|
|
|
|
NEDPositionData nedPos;
|
|
|
|
NEDPositionGet(&nedPos);
|
|
|
|
nedPos.North = NED[0];
|
|
|
|
nedPos.East = NED[1];
|
|
|
|
nedPos.Down = NED[2];
|
|
|
|
NEDPositionSet(&nedPos);
|
|
|
|
|
2012-02-28 07:42:18 +01:00
|
|
|
} else if (!outdoor_mode) {
|
2012-02-28 09:37:59 +01:00
|
|
|
INSSetPosVelVar(1e-2f, 1e-2f);
|
2012-02-28 07:42:18 +01:00
|
|
|
vel[0] = vel[1] = vel[2] = 0;
|
|
|
|
NED[0] = NED[1] = 0;
|
|
|
|
NED[2] = baroData.Altitude;
|
2012-02-28 09:37:59 +01:00
|
|
|
sensors |= HORIZ_SENSORS | HORIZ_POS_SENSORS;
|
2011-12-14 09:07:33 +01:00
|
|
|
}
|
2012-02-28 07:42:18 +01:00
|
|
|
|
2011-12-14 08:54:06 +01:00
|
|
|
/*
|
|
|
|
* TODO: Need to add a general sanity check for all the inputs to make sure their kosher
|
|
|
|
* although probably should occur within INS itself
|
|
|
|
*/
|
2012-02-28 07:42:18 +01:00
|
|
|
if (sensors)
|
|
|
|
INSCorrection(&magData.x, NED, vel, baroData.Altitude, sensors);
|
2012-02-29 16:34:11 +01:00
|
|
|
|
2011-12-14 09:07:33 +01:00
|
|
|
// Copy the position and velocity into the UAVO
|
|
|
|
PositionActualData positionActual;
|
|
|
|
PositionActualGet(&positionActual);
|
|
|
|
positionActual.North = Nav.Pos[0];
|
|
|
|
positionActual.East = Nav.Pos[1];
|
|
|
|
positionActual.Down = Nav.Pos[2];
|
|
|
|
PositionActualSet(&positionActual);
|
|
|
|
|
|
|
|
VelocityActualData velocityActual;
|
|
|
|
VelocityActualGet(&velocityActual);
|
|
|
|
velocityActual.North = Nav.Vel[0];
|
|
|
|
velocityActual.East = Nav.Vel[1];
|
|
|
|
velocityActual.Down = Nav.Vel[2];
|
|
|
|
VelocityActualSet(&velocityActual);
|
|
|
|
|
2011-12-14 08:54:06 +01:00
|
|
|
if(fabs(Nav.gyro_bias[0]) > 0.1f || fabs(Nav.gyro_bias[1]) > 0.1f || fabs(Nav.gyro_bias[2]) > 0.1f) {
|
|
|
|
float zeros[3] = {0.0f,0.0f,0.0f};
|
|
|
|
INSSetGyroBias(zeros);
|
|
|
|
}
|
|
|
|
|
2012-03-11 20:39:31 +01:00
|
|
|
return 0;
|
2011-12-14 08:54:06 +01:00
|
|
|
}
|
|
|
|
|
2012-02-29 19:05:54 +01:00
|
|
|
/**
|
|
|
|
* @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
|
|
|
|
*/
|
|
|
|
float T[3];
|
|
|
|
const float DEG2RAD = 3.141592653589793f / 180.0f;
|
|
|
|
static int32_t getNED(GPSPositionData * gpsPosition, float * NED)
|
|
|
|
{
|
2012-03-01 11:05:52 +01:00
|
|
|
float dL[3] = {(gpsPosition->Latitude - homeLocation.Latitude) / 10.0e6f * DEG2RAD,
|
|
|
|
(gpsPosition->Longitude - homeLocation.Longitude) / 10.0e6f * DEG2RAD,
|
2012-02-29 19:05:54 +01:00
|
|
|
(gpsPosition->Altitude - homeLocation.Altitude)};
|
|
|
|
|
|
|
|
NED[0] = T[0] * dL[0];
|
|
|
|
NED[1] = T[1] * dL[1];
|
|
|
|
NED[2] = T[2] * dL[2];
|
|
|
|
}
|
|
|
|
|
2011-12-14 08:54:06 +01:00
|
|
|
static void settingsUpdatedCb(UAVObjEvent * objEv)
|
|
|
|
{
|
2012-02-29 19:05:54 +01:00
|
|
|
float lat, lon, alt;
|
|
|
|
|
2011-11-14 17:49:37 +01:00
|
|
|
AttitudeSettingsGet(&attitudeSettings);
|
2012-03-01 11:52:09 +01:00
|
|
|
RevoCalibrationGet(&revoCalibration);
|
2012-02-29 17:10:22 +01:00
|
|
|
RevoSettingsGet(&revoSettings);
|
2012-02-29 19:05:54 +01:00
|
|
|
HomeLocationGet(&homeLocation);
|
2011-11-14 17:49:37 +01:00
|
|
|
|
2011-12-12 21:39:38 +01:00
|
|
|
GyrosBiasData gyrosBias;
|
|
|
|
GyrosBiasGet(&gyrosBias);
|
|
|
|
gyrosBias.x = attitudeSettings.GyroBias[ATTITUDESETTINGS_GYROBIAS_X] / 100.0f;
|
|
|
|
gyrosBias.y = attitudeSettings.GyroBias[ATTITUDESETTINGS_GYROBIAS_Y] / 100.0f;
|
|
|
|
gyrosBias.z = attitudeSettings.GyroBias[ATTITUDESETTINGS_GYROBIAS_Z] / 100.0f;
|
|
|
|
GyrosBiasSet(&gyrosBias);
|
2012-02-29 19:05:54 +01:00
|
|
|
|
|
|
|
// Compute matrix to convert deltaLLA to NED
|
|
|
|
lat = homeLocation.Latitude / 10.0e6f * DEG2RAD;
|
|
|
|
lon = homeLocation.Longitude / 10.0e6 * DEG2RAD;
|
|
|
|
alt = homeLocation.Altitude;
|
|
|
|
|
2012-03-01 11:52:09 +01:00
|
|
|
// In case INS currently running
|
|
|
|
INSSetMagVar(revoCalibration.mag_var);
|
|
|
|
INSSetAccelVar(revoCalibration.accel_var);
|
|
|
|
INSSetGyroVar(revoCalibration.gyro_var);
|
|
|
|
|
2012-02-29 19:05:54 +01:00
|
|
|
T[0] = alt+6.378137E6f;
|
|
|
|
T[1] = cosf(lat)*(alt+6.378137E6f);
|
|
|
|
T[2] = -1.0f;
|
2011-11-14 17:49:37 +01:00
|
|
|
}
|
|
|
|
/**
|
2012-02-28 07:42:18 +01:00
|
|
|
* @}
|
|
|
|
* @}
|
|
|
|
*/
|