32 #ifndef AHRS_DCM_OUTPUT_ENABLED
33 #define AHRS_DCM_OUTPUT_ENABLED TRUE
44 #if PERIODIC_TELEMETRY
55 if (t_diff > 50000) { mde = 5; }
56 pprz_msg_send_STATE_FILTER_STATUS(trans, dev, AC_ID, &
ahrs_dcm_id, &mde, &val);
63 #ifndef AHRS_DCM_IMU_ID
64 #define AHRS_DCM_IMU_ID ABI_BROADCAST
70 #ifndef AHRS_DCM_MAG_ID
71 #define AHRS_DCM_MAG_ID AHRS_DCM_IMU_ID
77 #ifndef AHRS_DCM_GPS_ID
78 #define AHRS_DCM_GPS_ID GPS_MULTI_ID
92 ahrs_dcm_last_stamp = stamp;
96 #if USE_AUTO_AHRS_FREQ || !defined(AHRS_PROPAGATE_FREQUENCY)
101 float dt = (float)(stamp - last_stamp) * 1e-6;
107 PRINT_CONFIG_MSG(
"Using fixed AHRS_PROPAGATE_FREQUENCY for AHRS dcm propagation.")
118 uint32_t stamp __attribute__((unused)),
129 uint32_t stamp __attribute__((unused)),
140 uint32_t stamp __attribute__((unused)),
166 uint32_t stamp __attribute__((unused)),
174 ahrs_dcm_output_enabled = enable;
183 if (ahrs_dcm_output_enabled) {
190 struct FloatRMat ltp_to_imu_rmat, ltp_to_body_rmat;
214 #if PERIODIC_TELEMETRY
#define AHRS_DCM_OUTPUT_ENABLED
Event structure to store callbacks in a linked list.
static void stateSetNedToBodyRMat_f(struct FloatRMat *ned_to_body_rmat)
Set vehicle body attitude from rotation matrix (float).
static abi_event aligner_ev
Dispatcher to register actual AHRS implementations.
#define float_rmat_of_eulers
bool ahrs_dcm_align(struct FloatRates *lp_gyro, struct FloatVect3 *lp_accel, struct FloatVect3 *lp_mag)
#define AHRS_PROPAGATE_FREQUENCY
Periodic telemetry system header (includes downlink utility and generated code).
static void set_body_orientation_and_rates(void)
Compute body orientation and rates from imu orientation and rates.
static struct FloatRMat * orientationGetRMat_f(struct OrientationReps *orientation)
Get vehicle body attitude rotation matrix (float).
void ahrs_dcm_update_mag(struct FloatVect3 *mag)
Main include for ABI (AirBorneInterface).
static bool ahrs_dcm_enable_output(bool enable)
void float_rmat_comp_inv(struct FloatRMat *m_a2b, struct FloatRMat *m_a2c, struct FloatRMat *m_b2c)
Composition (multiplication) of two rotation matrices.
static uint8_t ahrs_dcm_id
static void aligner_cb(uint8_t sender_id, uint32_t stamp, struct Int32Rates *lp_gyro, struct Int32Vect3 *lp_accel, struct Int32Vect3 *lp_mag)
Paparazzi specific wrapper to run floating point DCM filter.
struct FloatEulers ltp_to_imu_euler
static void accel_cb(uint8_t sender_id, uint32_t stamp, struct Int32Vect3 *accel)
#define RATES_FLOAT_OF_BFP(_rf, _ri)
void ahrs_register_impl(AhrsEnableOutput enable)
Register an AHRS implementation.
Architecture independent timing functions.
data structure for GPS information
struct AhrsFloatDCM ahrs_dcm
PRINT_CONFIG_MSG("USE_INS_NAV_INIT defaulting to TRUE")
void ahrs_dcm_update_gps(struct GpsState *gps_s)
#define DefaultPeriodic
Set default periodic telemetry.
void ahrs_dcm_update_accel(struct FloatVect3 *accel)
static abi_event body_to_imu_ev
#define ACCELS_FLOAT_OF_BFP(_ef, _ei)
#define AHRS_DCM_MAG_ID
ABI binding for magnetometer data.
static const struct usb_device_descriptor dev
struct OrientationReps body_to_imu
static void gyro_cb(uint8_t sender_id, uint32_t stamp, struct Int32Rates *gyro)
API to get/set the generic vehicle states.
void float_rmat_transp_ratemult(struct FloatRates *rb, struct FloatRMat *m_b2a, struct FloatRates *ra)
rotate anglular rates by transposed rotation matrix.
static bool ahrs_dcm_output_enabled
if TRUE with push the estimation results to the state interface
#define AHRS_DCM_GPS_ID
ABI binding for gps data.
void ahrs_dcm_set_body_to_imu_quat(struct FloatQuat *q_b2i)
static uint32_t ahrs_dcm_last_stamp
static void send_filter_status(struct transport_tx *trans, struct link_device *dev)
static void body_to_imu_cb(uint8_t sender_id, struct FloatQuat *q_b2i_f)
#define ABI_BROADCAST
Broadcast address.
#define AHRS_DCM_IMU_ID
ABI binding for IMU data.
#define MAGS_FLOAT_OF_BFP(_ef, _ei)
void ahrs_dcm_propagate(struct FloatRates *gyro, float dt)
static void mag_cb(uint8_t sender_id, uint32_t stamp, struct Int32Vect3 *mag)
uint32_t get_sys_time_usec(void)
Get the time in microseconds since startup.
static void stateSetBodyRates_f(struct FloatRates *body_rate)
Set vehicle body angular rate (float).
static void gps_cb(uint8_t sender_id, uint32_t stamp, struct GpsState *gps_s)
static abi_event accel_ev
struct FloatRates imu_rate
int8_t register_periodic_telemetry(struct periodic_telemetry *_pt, uint8_t _id, telemetry_cb _cb)
Register a telemetry callback function.
void ahrs_dcm_register(void)