Paparazzi UAS v7.0_unstable
Paparazzi is a free software Unmanned Aircraft System.
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
ahrs_aligner.c
Go to the documentation of this file.
1/*
2 * Copyright (C) 2008-2009 Antoine Drouin <poinix@gmail.com>
3 *
4 * This file is part of paparazzi.
5 *
6 * paparazzi is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2, or (at your option)
9 * any later version.
10 *
11 * paparazzi is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with paparazzi; see the file COPYING. If not, write to
18 * the Free Software Foundation, 59 Temple Place - Suite 330,
19 * Boston, MA 02111-1307, USA.
20 */
21
29#include "ahrs_aligner.h"
30
31#include <stdlib.h> /* for abs() */
32#include "modules/imu/imu.h"
33#include "led.h"
34#include "modules/core/abi.h"
35#include "mcu_periph/sys_time.h"
36
38
39#ifndef AHRS_ALIGNER_SAMPLES_NB
40#define AHRS_ALIGNER_SAMPLES_NB 100
41#endif
42
43static struct Int32Rates gyro_sum;
44static struct Int32Vect3 accel_sum;
45static struct Int32Vect3 mag_sum;
48
49#ifndef AHRS_ALIGNER_IMU_ID
50#define AHRS_ALIGNER_IMU_ID ABI_BROADCAST
51#endif
53
54static void gyro_cb(uint8_t sender_id __attribute__((unused)),
56 struct Int32Rates *gyro __attribute__((unused)))
57{
60 }
61}
62
63#if PERIODIC_TELEMETRY
65
66static void send_aligner(struct transport_tx *trans, struct link_device *dev)
67{
68 struct imu_gyro_t *gyro = imu_get_gyro(AHRS_ALIGNER_IMU_ID, false);
69 if(gyro != NULL) {
74 &gyro->scaled.p,
75 &gyro->scaled.q,
76 &gyro->scaled.r,
80 }
81}
82#endif
83
85{
87
88 // for now: only bind to gyro message and still read from global imu struct
90
91#if PERIODIC_TELEMETRY
93#endif
94}
95
106
107#ifndef LOW_NOISE_THRESHOLD
108#define LOW_NOISE_THRESHOLD 90000
109#endif
111#ifndef LOW_NOISE_TIME
112#define LOW_NOISE_TIME 5
113#endif
114
116{
117 struct imu_gyro_t *gyro = imu_get_gyro(AHRS_ALIGNER_IMU_ID, false);
118 struct imu_accel_t *accel = imu_get_accel(AHRS_ALIGNER_IMU_ID, false);
119 struct imu_mag_t *mag = imu_get_mag(AHRS_ALIGNER_IMU_ID, false);
120
121 // Could not find all sensors
122 if(gyro == NULL || accel == NULL)
123 return;
124
125 RATES_ADD(gyro_sum, gyro->scaled);
126 VECT3_ADD(accel_sum, accel->scaled);
127 if(mag != NULL)
128 VECT3_ADD(mag_sum, mag->scaled);
129
131 samples_idx++;
132
133#ifdef AHRS_ALIGNER_LED
135#endif
136
139 if (avg_ref_sensor >= 0) {
141 } else {
143 }
145
147 int i;
148 for (i = 0; i < AHRS_ALIGNER_SAMPLES_NB; i++) {
151 }
152
156
160 samples_idx = 0;
161
164 } else if (ahrs_aligner.low_noise_cnt > 0) {
166 }
167
170#ifdef AHRS_ALIGNER_LED
172#endif
176 }
177 }
178
179}
Main include for ABI (AirBorneInterface).
Event structure to store callbacks in a linked list.
Definition abi_common.h:67
#define AHRS_ALIGNER_ID
static int32_t ref_sensor_samples[AHRS_ALIGNER_SAMPLES_NB]
#define AHRS_ALIGNER_SAMPLES_NB
static struct Int32Vect3 mag_sum
void ahrs_aligner_init(void)
static void gyro_cb(uint8_t sender_id, uint32_t stamp, struct Int32Rates *gyro)
static uint32_t samples_idx
struct AhrsAligner ahrs_aligner
static struct Int32Vect3 accel_sum
static abi_event gyro_ev
void ahrs_aligner_restart(void)
void ahrs_aligner_run(void)
static void send_aligner(struct transport_tx *trans, struct link_device *dev)
#define LOW_NOISE_THRESHOLD
#define AHRS_ALIGNER_IMU_ID
static struct Int32Rates gyro_sum
#define LOW_NOISE_TIME
Number of cycles (100 samples each) with low noise.
Interface to align the AHRS via low-passed measurements at startup.
#define AHRS_ALIGNER_LOCKED
int32_t noise
uint8_t status
#define AHRS_ALIGNER_RUNNING
int32_t low_noise_cnt
struct Int32Vect3 lp_mag
struct Int32Rates lp_gyro
struct Int32Vect3 lp_accel
#define LED_ON(i)
Definition led_hw.h:51
#define LED_TOGGLE(i)
Definition led_hw.h:53
uint32_t get_sys_time_usec(void)
Get the time in microseconds since startup.
#define VECT3_SDIV(_vo, _vi, _s)
#define RATES_ADD(_a, _b)
#define VECT3_ADD(_a, _b)
#define RATES_SDIV(_ro, _ri, _s)
int32_t p
in rad/s with INT32_RATE_FRAC
int32_t r
in rad/s with INT32_RATE_FRAC
int32_t q
in rad/s with INT32_RATE_FRAC
#define INT_RATES_ZERO(_e)
#define INT_VECT3_ZERO(_v)
angular rates
struct imu_gyro_t * imu_get_gyro(uint8_t sender_id, bool create)
Find or create the gyro in the imu structure.
Definition imu.c:884
struct imu_accel_t * imu_get_accel(uint8_t sender_id, bool create)
Find or create the accel in the imu structure.
Definition imu.c:907
struct imu_mag_t * imu_get_mag(uint8_t sender_id, bool create)
Find or create the mag in the imu structure.
Definition imu.c:931
Inertial Measurement Unit interface.
struct Int32Rates scaled
Last scaled values in body frame.
Definition imu.h:53
struct Int32Vect3 scaled
Last scaled values in body frame.
Definition imu.h:68
struct Int32Vect3 scaled
Last scaled values in body frame.
Definition imu.h:82
arch independent LED (Light Emitting Diodes) API
uint16_t foo
Definition main_demo5.c:58
static const struct usb_device_descriptor dev
Definition usb_ser_hw.c:74
Architecture independent timing functions.
int8_t register_periodic_telemetry(struct periodic_telemetry *_pt, uint8_t _id, telemetry_cb _cb)
Register a telemetry callback function.
Definition telemetry.c:51
Periodic telemetry system header (includes downlink utility and generated code).
#define DefaultPeriodic
Set default periodic telemetry.
Definition telemetry.h:66
int int32_t
Typedef defining 32 bit int type.
unsigned int uint32_t
Typedef defining 32 bit unsigned int type.
unsigned char uint8_t
Typedef defining 8 bit unsigned char type.