|
Paparazzi UAS
v5.18.0_stable
Paparazzi is a free software Unmanned Aircraft System.
|
Go to the documentation of this file.
32 #ifndef AHRS_ICQ_OUTPUT_ENABLED
33 #define AHRS_ICQ_OUTPUT_ENABLED TRUE
44 #if PERIODIC_TELEMETRY
49 static void send_quat(
struct transport_tx *trans,
struct link_device *
dev)
52 pprz_msg_send_AHRS_QUAT_INT(trans,
dev, AC_ID,
65 static void send_euler(
struct transport_tx *trans,
struct link_device *
dev)
70 pprz_msg_send_AHRS_EULER_INT(trans,
dev, AC_ID,
71 <p_to_imu_euler.
phi,
72 <p_to_imu_euler.
theta,
73 <p_to_imu_euler.
psi,
80 static void send_bias(
struct transport_tx *trans,
struct link_device *
dev)
82 pprz_msg_send_AHRS_GYRO_BIAS_INT(trans,
dev, AC_ID,
93 pprz_msg_send_GEO_MAG(trans,
dev, AC_ID,
104 if (t_diff > 50000) { mde = 5; }
113 #ifndef AHRS_ICQ_IMU_ID
114 #define AHRS_ICQ_IMU_ID ABI_BROADCAST
120 #ifndef AHRS_ICQ_MAG_ID
121 #define AHRS_ICQ_MAG_ID AHRS_ICQ_IMU_ID
127 #ifndef AHRS_ICQ_GPS_ID
128 #define AHRS_ICQ_GPS_ID GPS_MULTI_ID
144 #if USE_AUTO_AHRS_FREQ || !defined(AHRS_PROPAGATE_FREQUENCY)
150 float dt = (float)(stamp - last_stamp) * 1e-6;
156 PRINT_CONFIG_MSG(
"Using fixed AHRS_PROPAGATE_FREQUENCY for AHRS_ICQ propagation.")
167 uint32_t __attribute__((unused)) stamp,
170 #if USE_AUTO_AHRS_FREQ || !defined(AHRS_CORRECT_FREQUENCY)
174 float dt = (float)(stamp - last_stamp) * 1e-6;
180 PRINT_CONFIG_MSG(
"Using fixed AHRS_CORRECT_FREQUENCY for AHRS int_cmpl_quat accel update.")
181 PRINT_CONFIG_VAR(AHRS_CORRECT_FREQUENCY)
183 const float dt = 1. / (AHRS_CORRECT_FREQUENCY);
191 uint32_t __attribute__((unused)) stamp,
194 #if USE_AUTO_AHRS_FREQ || !defined(AHRS_MAG_CORRECT_FREQUENCY)
198 float dt = (float)(stamp - last_stamp) * 1e-6;
204 PRINT_CONFIG_MSG(
"Using fixed AHRS_MAG_CORRECT_FREQUENCY for AHRS int_cmpl_quat mag update.")
205 PRINT_CONFIG_VAR(AHRS_MAG_CORRECT_FREQUENCY)
207 const float dt = 1. / (AHRS_MAG_CORRECT_FREQUENCY);
215 uint32_t stamp __attribute__((unused)),
239 uint32_t stamp __attribute__((unused)),
288 #if PERIODIC_TELEMETRY
int32_t theta
in rad with INT32_ANGLE_FRAC
static void set_body_state_from_quat(void)
Rotate angles and rates from imu to body frame and set state.
struct OrientationReps body_to_imu
static void aligner_cb(uint8_t sender_id, uint32_t stamp, struct Int32Rates *lp_gyro, struct Int32Vect3 *lp_accel, struct Int32Vect3 *lp_mag)
static void geo_mag_cb(uint8_t sender_id, struct FloatVect3 *h)
static void h(const real32_T x[7], const real32_T q[4], real32_T y[6])
int32_t q
in rad/s with INT32_RATE_FRAC
data structure for GPS information
#define MAG_FLOAT_OF_BFP(_ai)
static void send_quat(struct transport_tx *trans, struct link_device *dev)
static struct Int32Quat * stateGetNedToBodyQuat_i(void)
Get vehicle body attitude quaternion (int).
Event structure to store callbacks in a linked list.
static struct Int32Quat * orientationGetQuat_i(struct OrientationReps *orientation)
Get vehicle body attitude quaternion (int).
static void send_bias(struct transport_tx *trans, struct link_device *dev)
enum AhrsICQStatus status
status of the AHRS, AHRS_ICQ_UNINIT or AHRS_ICQ_RUNNING
void int32_eulers_of_quat(struct Int32Eulers *e, struct Int32Quat *q)
static bool ahrs_icq_output_enabled
if TRUE with push the estimation results to the state interface
static uint32_t ahrs_icq_last_stamp
void ahrs_icq_propagate(struct Int32Rates *gyro, float dt)
void int32_quat_comp_inv(struct Int32Quat *a2b, struct Int32Quat *a2c, struct Int32Quat *b2c)
Composition (multiplication) of two quaternions.
uint32_t get_sys_time_usec(void)
Get the time in microseconds since startup.
static abi_event geo_mag_ev
void ahrs_icq_update_gps(struct GpsState *gps_s)
int32_t p
in rad/s with INT32_RATE_FRAC
static void stateSetBodyRates_i(struct Int32Rates *body_rate)
Set vehicle body angular rate (int).
int32_t psi
in rad with INT32_ANGLE_FRAC
struct Int32Rates gyro_bias
int32_t phi
in rad with INT32_ANGLE_FRAC
#define MAG_BFP_OF_REAL(_af)
static const struct usb_device_descriptor dev
static void mag_cb(uint8_t sender_id, uint32_t stamp, struct Int32Vect3 *mag)
struct Int32Quat ltp_to_imu_quat
static void body_to_imu_cb(uint8_t sender_id, struct FloatQuat *q_b2i_f)
Architecture independent timing functions.
static bool ahrs_icq_enable_output(bool enable)
static void stateSetNedToBodyQuat_i(struct Int32Quat *ned_to_body_quat)
Set vehicle body attitude from quaternion (int).
static void send_euler(struct transport_tx *trans, struct link_device *dev)
int8_t register_periodic_telemetry(struct periodic_telemetry *_pt, uint8_t _id, telemetry_cb _cb)
Register a telemetry callback function.
#define AHRS_ICQ_MAG_ID
ABI binding for magnetometer data.
static abi_event accel_ev
PRINT_CONFIG_MSG("USE_INS_NAV_INIT defaulting to TRUE")
void ahrs_icq_register(void)
void ahrs_icq_set_body_to_imu_quat(struct FloatQuat *q_b2i)
void int32_rmat_transp_ratemult(struct Int32Rates *rb, struct Int32RMat *m_b2a, struct Int32Rates *ra)
rotate anglular rates by transposed rotation matrix.
#define AHRS_ICQ_GPS_ID
ABI binding for gps data.
static abi_event body_to_imu_ev
void ahrs_icq_update_mag(struct Int32Vect3 *mag, float dt)
#define AHRS_ICQ_IMU_ID
ABI binding for IMU data.
struct Int32Rates imu_rate
void ahrs_icq_update_accel(struct Int32Vect3 *accel, float dt)
static void gps_cb(uint8_t sender_id, uint32_t stamp, struct GpsState *gps_s)
static struct Int32RMat * orientationGetRMat_i(struct OrientationReps *orientation)
Get vehicle body attitude rotation matrix (int).
#define AHRS_PROPAGATE_FREQUENCY
static void send_geo_mag(struct transport_tx *trans, struct link_device *dev)
static struct Int32Eulers * stateGetNedToBodyEulers_i(void)
Get vehicle body attitude euler angles (int).
void ahrs_register_impl(AhrsEnableOutput enable)
Register an AHRS implementation.
#define VECT3_ASSIGN(_a, _x, _y, _z)
#define AHRS_ICQ_OUTPUT_ENABLED
bool ahrs_icq_align(struct Int32Rates *lp_gyro, struct Int32Vect3 *lp_accel, struct Int32Vect3 *lp_mag)
static void send_filter_status(struct transport_tx *trans, struct link_device *dev)
static void gyro_cb(uint8_t sender_id, uint32_t stamp, struct Int32Rates *gyro)
#define ABI_BROADCAST
Broadcast address.
static uint8_t ahrs_icq_id
struct AhrsIntCmplQuat ahrs_icq
Default Rate filter Low pass.
int32_t r
in rad/s with INT32_RATE_FRAC
static abi_event aligner_ev
#define DefaultPeriodic
Set default periodic telemetry.
static void accel_cb(uint8_t sender_id, uint32_t stamp, struct Int32Vect3 *accel)