Paparazzi UAS  v5.10_stable-5-g83a0da5-dirty
Paparazzi is a free software Unmanned Aircraft System.
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
ins_int.c
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2008-2010 The Paparazzi Team
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 "subsystems/ins/ins_int.h"
30 
31 #include "subsystems/abi.h"
32 
33 #include "subsystems/imu.h"
34 #include "subsystems/gps.h"
35 
36 #include "generated/airframe.h"
37 
38 #if USE_VFF_EXTENDED
40 #else
42 #endif
43 
44 #if USE_HFF
46 #endif
47 
48 #if defined SITL && USE_NPS
49 //#include "nps_fdm.h"
50 #include "nps_autopilot.h"
51 #include <stdio.h>
52 #endif
53 
54 #include "math/pprz_geodetic_int.h"
55 #include "math/pprz_isa.h"
56 
57 
58 #if USE_SONAR
59 #if !USE_VFF_EXTENDED
60 #error USE_SONAR needs USE_VFF_EXTENDED
61 #endif
62 
64 #ifndef INS_INT_SONAR_ID
65 #define INS_INT_SONAR_ID ABI_BROADCAST
66 #endif
68 static void sonar_cb(uint8_t sender_id, float distance);
69 
70 #ifdef INS_SONAR_THROTTLE_THRESHOLD
72 #endif
73 
74 #ifndef INS_SONAR_OFFSET
75 #define INS_SONAR_OFFSET 0.
76 #endif
77 #ifndef INS_SONAR_MIN_RANGE
78 #define INS_SONAR_MIN_RANGE 0.001
79 #endif
80 #ifndef INS_SONAR_MAX_RANGE
81 #define INS_SONAR_MAX_RANGE 4.0
82 #endif
83 #define VFF_R_SONAR_0 0.1
84 #ifndef VFF_R_SONAR_OF_M
85 #define VFF_R_SONAR_OF_M 0.2
86 #endif
87 
88 #ifndef INS_SONAR_UPDATE_ON_AGL
89 #define INS_SONAR_UPDATE_ON_AGL FALSE
90 PRINT_CONFIG_MSG("INS_SONAR_UPDATE_ON_AGL defaulting to FALSE")
91 #endif
92 
93 #endif // USE_SONAR
94 
95 #if USE_GPS
96 #ifndef INS_VFF_R_GPS
97 #define INS_VFF_R_GPS 2.0
98 #endif
99 
100 #ifndef INS_VFF_VZ_R_GPS
101 #define INS_VFF_VZ_R_GPS 2.0
102 #endif
103 #endif // USE_GPS
104 
106 #ifndef INS_MAX_PROPAGATION_STEPS
107 #define INS_MAX_PROPAGATION_STEPS 200
108 #endif
109 
110 #ifndef USE_INS_NAV_INIT
111 #define USE_INS_NAV_INIT TRUE
112 PRINT_CONFIG_MSG("USE_INS_NAV_INIT defaulting to TRUE")
113 #endif
114 
116 #ifndef INS_INT_BARO_ID
117 #if USE_BARO_BOARD
118 #define INS_INT_BARO_ID BARO_BOARD_SENDER_ID
119 #else
120 #define INS_INT_BARO_ID ABI_BROADCAST
121 #endif
122 #endif
123 PRINT_CONFIG_VAR(INS_INT_BARO_ID)
125 static void baro_cb(uint8_t sender_id, float pressure);
126 
130 #ifndef INS_INT_IMU_ID
131 #define INS_INT_IMU_ID ABI_BROADCAST
132 #endif
134 static void accel_cb(uint8_t sender_id, uint32_t stamp, struct Int32Vect3 *accel);
135 
136 #ifndef INS_INT_GPS_ID
137 #define INS_INT_GPS_ID GPS_MULTI_ID
138 #endif
140 static void gps_cb(uint8_t sender_id, uint32_t stamp, struct GpsState *gps_s);
141 
145 #ifndef INS_INT_VEL_ID
146 #define INS_INT_VEL_ID ABI_BROADCAST
147 #endif
149 static void vel_est_cb(uint8_t sender_id, uint32_t stamp, float x, float y, float z, float noise);
150 
152 
153 #if PERIODIC_TELEMETRY
155 
156 static void send_ins(struct transport_tx *trans, struct link_device *dev)
157 {
158  pprz_msg_send_INS(trans, dev, AC_ID,
162 }
163 
164 static void send_ins_z(struct transport_tx *trans, struct link_device *dev)
165 {
166  pprz_msg_send_INS_Z(trans, dev, AC_ID,
168 }
169 
170 static void send_ins_ref(struct transport_tx *trans, struct link_device *dev)
171 {
172  if (ins_int.ltp_initialized) {
173  pprz_msg_send_INS_REF(trans, dev, AC_ID,
177  }
178 }
179 #endif
180 
181 static void ins_ned_to_state(void);
182 static void ins_update_from_vff(void);
183 #if USE_HFF
184 static void ins_update_from_hff(void);
185 #endif
186 
187 
188 void ins_int_init(void)
189 {
190 
191 #if USE_INS_NAV_INIT
193  ins_int.ltp_initialized = true;
194 #else
195  ins_int.ltp_initialized = false;
196 #endif
197 
198  /* we haven't had any measurement updates yet, so set the counter to max */
200 
201  // Bind to BARO_ABS message
202  AbiBindMsgBARO_ABS(INS_INT_BARO_ID, &baro_ev, baro_cb);
203  ins_int.baro_initialized = false;
204 
205 #if USE_SONAR
206  ins_int.update_on_agl = INS_SONAR_UPDATE_ON_AGL;
207  // Bind to AGL message
208  AbiBindMsgAGL(INS_INT_SONAR_ID, &sonar_ev, sonar_cb);
209 #endif
210 
211  ins_int.vf_reset = false;
212  ins_int.hf_realign = false;
213 
214  /* init vertical and horizontal filters */
215  vff_init_zero();
216 #if USE_HFF
217  b2_hff_init(0., 0., 0., 0.);
218 #endif
219 
223 
224 #if PERIODIC_TELEMETRY
228 #endif
229 
230  /*
231  * Subscribe to scaled IMU measurements and attach callbacks
232  */
233  AbiBindMsgIMU_ACCEL_INT32(INS_INT_IMU_ID, &accel_ev, accel_cb);
234  AbiBindMsgGPS(INS_INT_GPS_ID, &gps_ev, gps_cb);
235  AbiBindMsgVELOCITY_ESTIMATE(INS_INT_VEL_ID, &vel_est_ev, vel_est_cb);
236 }
237 
239 {
240 #if USE_GPS
241  if (GpsFixValid()) {
245  ins_int.ltp_initialized = true;
247  } else {
248  ins_int.ltp_initialized = false;
249  }
250 #else
251  ins_int.ltp_initialized = false;
252 #endif
253 
254 #if USE_HFF
255  ins_int.hf_realign = true;
256 #endif
257  ins_int.vf_reset = true;
258 }
259 
261 {
262 #if USE_GPS
263  struct LlaCoor_i lla = {
265  .lon = state.ned_origin_i.lla.lon,
266  .alt = gps.lla_pos.alt
267  };
271 #endif
272  ins_int.vf_reset = true;
273 }
274 
275 void ins_int_propagate(struct Int32Vect3 *accel, float dt)
276 {
277  /* untilt accels */
278  struct Int32Vect3 accel_meas_body;
279  struct Int32RMat *body_to_imu_rmat = orientationGetRMat_i(&imu.body_to_imu);
280  int32_rmat_transp_vmult(&accel_meas_body, body_to_imu_rmat, accel);
281  struct Int32Vect3 accel_meas_ltp;
282  int32_rmat_transp_vmult(&accel_meas_ltp, stateGetNedToBodyRMat_i(), &accel_meas_body);
283 
284  float z_accel_meas_float = ACCEL_FLOAT_OF_BFP(accel_meas_ltp.z);
285 
286  /* Propagate only if we got any measurement during the last INS_MAX_PROPAGATION_STEPS.
287  * Otherwise halt the propagation to not diverge and only set the acceleration.
288  * This should only be relevant in the startup phase when the baro is not yet initialized
289  * and there is no gps fix yet...
290  */
292  vff_propagate(z_accel_meas_float, dt);
294  } else {
295  // feed accel from the sensors
296  // subtract -9.81m/s2 (acceleration measured due to gravity,
297  // but vehicle not accelerating in ltp)
298  ins_int.ltp_accel.z = accel_meas_ltp.z + ACCEL_BFP_OF_REAL(9.81);
299  }
300 
301 #if USE_HFF
302  /* propagate horizontal filter */
304  /* convert and copy result to ins_int */
305  ins_update_from_hff();
306 #else
307  ins_int.ltp_accel.x = accel_meas_ltp.x;
308  ins_int.ltp_accel.y = accel_meas_ltp.y;
309 #endif /* USE_HFF */
310 
312 
313  /* increment the propagation counter, while making sure it doesn't overflow */
316  }
317 }
318 
319 static void baro_cb(uint8_t __attribute__((unused)) sender_id, float pressure)
320 {
321  if (!ins_int.baro_initialized && pressure > 1e-7) {
322  // wait for a first positive value
323  ins_int.qfe = pressure;
324  ins_int.baro_initialized = true;
325  }
326 
328  if (ins_int.vf_reset) {
329  ins_int.vf_reset = false;
330  ins_int.qfe = pressure;
331  vff_realign(0.);
333  } else {
335 #if USE_VFF_EXTENDED
337 #else
339 #endif
340  }
342 
343  /* reset the counter to indicate we just had a measurement update */
345  }
346 }
347 
348 #if USE_GPS
349 void ins_int_update_gps(struct GpsState *gps_s)
350 {
351  if (gps_s->fix < GPS_FIX_3D) {
352  return;
353  }
354 
355  if (!ins_int.ltp_initialized) {
357  }
358 
359  struct NedCoor_i gps_pos_cm_ned;
360  ned_of_ecef_point_i(&gps_pos_cm_ned, &ins_int.ltp_def, &gps_s->ecef_pos);
361 
362  /* calculate body frame position taking BODY_TO_GPS translation (in cm) into account */
363 #ifdef INS_BODY_TO_GPS_X
364  /* body2gps translation in body frame */
365  struct Int32Vect3 b2g_b = {
366  .x = INS_BODY_TO_GPS_X,
367  .y = INS_BODY_TO_GPS_Y,
368  .z = INS_BODY_TO_GPS_Z
369  };
370  /* rotate offset given in body frame to navigation/ltp frame using current attitude */
371  struct Int32Quat q_b2n = *stateGetNedToBodyQuat_i();
372  QUAT_INVERT(q_b2n, q_b2n);
373  struct Int32Vect3 b2g_n;
374  int32_quat_vmult(&b2g_n, &q_b2n, &b2g_b);
375  /* subtract body2gps translation in ltp from gps position */
376  VECT3_SUB(gps_pos_cm_ned, b2g_n);
377 #endif
378 
380  struct NedCoor_i gps_speed_cm_s_ned;
381  ned_of_ecef_vect_i(&gps_speed_cm_s_ned, &ins_int.ltp_def, &gps_s->ecef_vel);
382 
383 #if INS_USE_GPS_ALT
384  vff_update_z_conf(((float)gps_pos_cm_ned.z) / 100.0, INS_VFF_R_GPS);
385 #endif
386 #if INS_USE_GPS_ALT_SPEED
387  vff_update_vz_conf(((float)gps_speed_cm_s_ned.z) / 100.0, INS_VFF_VZ_R_GPS);
389 #endif
390 
391 #if USE_HFF
392  /* horizontal gps transformed to NED in meters as float */
393  struct FloatVect2 gps_pos_m_ned;
394  VECT2_ASSIGN(gps_pos_m_ned, gps_pos_cm_ned.x, gps_pos_cm_ned.y);
395  VECT2_SDIV(gps_pos_m_ned, gps_pos_m_ned, 100.0f);
396 
397  struct FloatVect2 gps_speed_m_s_ned;
398  VECT2_ASSIGN(gps_speed_m_s_ned, gps_speed_cm_s_ned.x, gps_speed_cm_s_ned.y);
399  VECT2_SDIV(gps_speed_m_s_ned, gps_speed_m_s_ned, 100.);
400 
401  if (ins_int.hf_realign) {
402  ins_int.hf_realign = false;
403  const struct FloatVect2 zero = {0.0f, 0.0f};
404  b2_hff_realign(gps_pos_m_ned, zero);
405  }
406  // run horizontal filter
407  b2_hff_update_gps(&gps_pos_m_ned, &gps_speed_m_s_ned);
408  // convert and copy result to ins_int
409  ins_update_from_hff();
410 
411 #else /* hff not used */
412  /* simply copy horizontal pos/speed from gps */
413  INT32_VECT2_SCALE_2(ins_int.ltp_pos, gps_pos_cm_ned,
415  INT32_VECT2_SCALE_2(ins_int.ltp_speed, gps_speed_cm_s_ned,
417 #endif /* USE_HFF */
418 
420 
421  /* reset the counter to indicate we just had a measurement update */
423 }
424 #else
425 void ins_int_update_gps(struct GpsState *gps_s __attribute__((unused))) {}
426 #endif /* USE_GPS */
427 
428 
429 #if USE_SONAR
430 static void sonar_cb(uint8_t __attribute__((unused)) sender_id, float distance)
431 {
432  static float last_offset = 0.;
433 
434  /* update filter assuming a flat ground */
435  if (distance < INS_SONAR_MAX_RANGE && distance > INS_SONAR_MIN_RANGE
436 #ifdef INS_SONAR_THROTTLE_THRESHOLD
437  && stabilization_cmd[COMMAND_THRUST] < INS_SONAR_THROTTLE_THRESHOLD
438 #endif
439 #ifdef INS_SONAR_BARO_THRESHOLD
440  && ins_int.baro_z > -INS_SONAR_BARO_THRESHOLD /* z down */
441 #endif
442  && ins_int.update_on_agl
444  vff_update_z_conf(-(distance), VFF_R_SONAR_0 + VFF_R_SONAR_OF_M * fabsf(distance));
445  last_offset = vff.offset;
446  } else {
447  /* update offset with last value to avoid divergence */
448  vff_update_offset(last_offset);
449  }
450 
451  /* reset the counter to indicate we just had a measurement update */
453 }
454 #endif // USE_SONAR
455 
457 static void ins_ned_to_state(void)
458 {
462 
463 #if defined SITL && USE_NPS
464  if (nps_bypass_ins) {
466  }
467 #endif
468 }
469 
471 static void ins_update_from_vff(void)
472 {
476 }
477 
478 #if USE_HFF
479 
480 static void ins_update_from_hff(void)
481 {
488 }
489 #endif
490 
491 
492 static void accel_cb(uint8_t sender_id __attribute__((unused)),
493  uint32_t stamp, struct Int32Vect3 *accel)
494 {
495  PRINT_CONFIG_MSG("Calculating dt for INS int propagation.")
496  /* timestamp in usec when last callback was received */
497  static uint32_t last_stamp = 0;
498 
499  if (last_stamp > 0) {
500  float dt = (float)(stamp - last_stamp) * 1e-6;
501  ins_int_propagate(accel, dt);
502  }
503  last_stamp = stamp;
504 }
505 
506 static void gps_cb(uint8_t sender_id __attribute__((unused)),
507  uint32_t stamp __attribute__((unused)),
508  struct GpsState *gps_s)
509 {
510  ins_int_update_gps(gps_s);
511 }
512 
513 static void vel_est_cb(uint8_t sender_id __attribute__((unused)),
514  uint32_t stamp,
515  float x, float y, float z,
516  float noise __attribute__((unused)))
517 {
518 
519  struct FloatVect3 vel_body = {x, y, z};
520  static uint32_t last_stamp = 0;
521  float dt = 0;
522 
523  /* rotate velocity estimate to nav/ltp frame */
524  struct FloatQuat q_b2n = *stateGetNedToBodyQuat_f();
525  QUAT_INVERT(q_b2n, q_b2n);
526  struct FloatVect3 vel_ned;
527  float_quat_vmult(&vel_ned, &q_b2n, &vel_body);
528 
529  if (last_stamp > 0) {
530  dt = (float)(stamp - last_stamp) * 1e-6;
531  }
532 
533  last_stamp = stamp;
534 
535 #if USE_HFF
536  (void)dt; //dt is unused variable in this define
537 
538  struct FloatVect2 vel = {vel_ned.x, vel_ned.y};
539  struct FloatVect2 Rvel = {noise, noise};
540 
541  b2_hff_update_vel(vel, Rvel);
542  ins_update_from_hff();
543 #else
546  if (last_stamp > 0) {
547  ins_int.ltp_pos.x = ins_int.ltp_pos.x + POS_BFP_OF_REAL(dt * vel_ned.x);
548  ins_int.ltp_pos.y = ins_int.ltp_pos.y + POS_BFP_OF_REAL(dt * vel_ned.y);
549  }
550 #endif
551 
553 
554  /* reset the counter to indicate we just had a measurement update */
556 }
bool nps_bypass_ins
static void stateSetPositionNed_i(struct NedCoor_i *ned_pos)
Set position from local NED coordinates (int).
Definition: state.h:525
Event structure to store callbacks in a linked list.
Definition: abi_common.h:65
#define VECT3_SUB(_a, _b)
Definition: pprz_algebra.h:153
int32_t z
in centimeters
static abi_event gps_ev
Definition: ins_int.c:139
static struct Int32RMat * orientationGetRMat_i(struct OrientationReps *orientation)
Get vehicle body attitude rotation matrix (int).
bool vf_reset
request to reset vertical filter.
Definition: ins_int.h:53
void vff_update_z_conf(float z_meas, float conf)
Interface for extended vertical filter (in float).
Horizontal filter (x,y) to estimate position and velocity.
void b2_hff_realign(struct FloatVect2 pos, struct FloatVect2 vel)
Definition: hf_float.c:594
Periodic telemetry system header (includes downlink utility and generated code).
static struct Int32RMat * stateGetNedToBodyRMat_i(void)
Get vehicle body attitude rotation matrix (int).
Definition: state.h:1101
#define INS_VFF_VZ_R_GPS
Definition: ins_int.c:101
abi_event sonar_ev
Definition: agl_dist.c:51
static abi_event vel_est_ev
Definition: ins_int.c:148
struct InsInt ins_int
global INS state
Definition: ins_int.c:151
int32_t y
in centimeters
static void vel_est_cb(uint8_t sender_id, uint32_t stamp, float x, float y, float z, float noise)
Definition: ins_int.c:513
float qfe
Definition: ins_int.h:62
#define POS_BFP_OF_REAL(_af)
#define QUAT_INVERT(_qo, _qi)
Definition: pprz_algebra.h:563
static void ins_update_from_vff(void)
update ins state from vertical filter
Definition: ins_int.c:471
#define INT32_VECT3_ZERO(_v)
Main include for ABI (AirBorneInterface).
void vff_update_vz_conf(float vz_meas, float conf)
static void gps_cb(uint8_t sender_id, uint32_t stamp, struct GpsState *gps_s)
Definition: ins_int.c:506
void ins_reset_local_origin(void)
INS local origin reset.
Definition: ins_int.c:238
#define VECT2_ASSIGN(_a, _x, _y)
Definition: pprz_algebra.h:61
float dt
float z
z-position estimate in m (NED, z-down)
struct Imu imu
global IMU state
Definition: imu.c:108
#define INT32_SPEED_OF_CM_S_DEN
vector in Latitude, Longitude and Altitude
static void stateSetSpeedNed_i(struct NedCoor_i *ned_speed)
Set ground speed in local NED coordinates (int).
Definition: state.h:757
#define GPS_FIX_3D
3D GPS fix
Definition: gps.h:39
void ltp_def_from_lla_i(struct LtpDef_i *def, struct LlaCoor_i *lla)
int32_t z
Down.
static struct Int32Quat * stateGetNedToBodyQuat_i(void)
Get vehicle body attitude quaternion (int).
Definition: state.h:1095
bool baro_initialized
Definition: ins_int.h:63
void ned_of_ecef_vect_i(struct NedCoor_i *ned, struct LtpDef_i *def, struct EcefCoor_i *ecef)
Rotate a vector from ECEF to NED.
struct EcefCoor_i ecef
Reference point in ecef.
int32_t hmsl
Height above mean sea level in mm.
void ins_int_update_gps(struct GpsState *gps_s)
Definition: ins_int.c:349
static void sonar_cb(uint8_t sender_id, float distance)
Definition: agl_dist.c:66
static struct FloatQuat * stateGetNedToBodyQuat_f(void)
Get vehicle body attitude quaternion (float).
Definition: state.h:1113
int32_t alt
in millimeters above WGS84 reference ellipsoid
Vertical filter (in float) estimating altitude, velocity and accel bias.
Roation quaternion.
abi_event baro_ev
Definition: ins_int.c:124
int32_t y
East.
static void stateSetAccelNed_i(struct NedCoor_i *ned_accel)
Set acceleration in NED coordinates (int).
Definition: state.h:968
#define INT32_VECT2_SCALE_2(_a, _b, _num, _den)
static void send_ins_z(struct transport_tx *trans, struct link_device *dev)
Definition: ins_int.c:164
int32_t hmsl
height above mean sea level (MSL) in mm
Definition: gps.h:88
#define INS_INT_BARO_ID
default barometer to use in INS
Definition: ins_int.c:120
static void send_ins_ref(struct transport_tx *trans, struct link_device *dev)
Definition: ins_int.c:170
data structure for GPS information
Definition: gps.h:81
void ins_int_init(void)
Definition: ins_int.c:188
#define INT32_POS_OF_CM_NUM
static void stateSetLocalOrigin_i(struct LtpDef_i *ltp_def)
Set the local (flat earth) coordinate frame origin (int).
Definition: state.h:451
Device independent GPS code (interface)
Paparazzi atmospheric pressure conversion utilities.
#define ACCEL_FLOAT_OF_BFP(_ai)
bool ltp_initialized
Definition: ins_int.h:41
int32_t x
North.
unsigned long uint32_t
Definition: types.h:18
struct EcefCoor_i ecef_pos
position in ECEF in cm
Definition: gps.h:85
float offset
baro offset estimate
#define INS_INT_IMU_ID
ABI binding for IMU data.
Definition: ins_int.c:131
void vff_update_offset(float offset)
PRINT_CONFIG_MSG("USE_INS_NAV_INIT defaulting to TRUE")
static void ins_ned_to_state(void)
copy position and speed to state interface
Definition: ins_int.c:457
struct LlaCoor_i lla
Reference point in lla.
#define DefaultPeriodic
Set default periodic telemetry.
Definition: telemetry.h:66
int32_t lon
in degrees*1e7
#define INS_MAX_PROPAGATION_STEPS
maximum number of propagation steps without any updates in between
Definition: ins_int.c:107
void ins_init_origin_i_from_flightplan(struct LtpDef_i *ltp_def)
initialize the local origin (ltp_def in fixed point) from flight plan position
Definition: ins.c:39
void float_quat_vmult(struct FloatVect3 *v_out, struct FloatQuat *q, const struct FloatVect3 *v_in)
rotate 3D vector by quaternion.
void b2_hff_init(float init_x, float init_xdot, float init_y, float init_ydot)
Definition: hf_float.c:268
static void accel_cb(uint8_t sender_id, uint32_t stamp, struct Int32Vect3 *accel)
Definition: ins_int.c:492
Paparazzi fixed point math for geodetic calculations.
void int32_quat_vmult(struct Int32Vect3 *v_out, struct Int32Quat *q, struct Int32Vect3 *v_in)
rotate 3D vector by quaternion.
void vff_init_zero(void)
bool hf_realign
request to realign horizontal filter.
Definition: ins_int.h:48
float zdotdot
z-acceleration in m/s^2 (NED, z-down)
Inertial Measurement Unit interface.
struct NedCoor_i ltp_pos
Definition: ins_int.h:56
void vff_propagate(float accel, float dt)
Propagate the filter in time.
struct HfilterFloat b2_hff_state
Definition: hf_float.c:120
struct OrientationReps body_to_imu
rotation from body to imu frame
Definition: imu.h:49
struct NedCoor_i ltp_accel
Definition: ins_int.h:58
float baro_z
z-position calculated from baro in meters (z-down)
Definition: ins_int.h:61
static const struct usb_device_descriptor dev
Definition: usb_ser_hw.c:73
struct LtpDef_i ned_origin_i
Definition of the local (flat earth) coordinate system.
Definition: state.h:166
#define VECT2_SDIV(_vo, _vi, _s)
Definition: pprz_algebra.h:103
uint32_t propagation_cnt
number of propagation steps since the last measurement update
Definition: ins_int.h:43
void vff_realign(float z_meas)
float x
Definition: hf_float.h:39
float y
Definition: hf_float.h:43
Ins implementation state (fixed point)
Definition: ins_int.h:39
#define INT32_POS_OF_CM_DEN
unsigned char uint8_t
Definition: types.h:14
float xdot
Definition: hf_float.h:41
struct VffExtended vff
float zdot
z-velocity estimate in m/s (NED, z-down)
void ned_of_ecef_point_i(struct NedCoor_i *ned, struct LtpDef_i *def, struct EcefCoor_i *ecef)
Convert a point from ECEF to local NED.
vector in North East Down coordinates
#define INS_INT_VEL_ID
ABI binding for VELOCITY_ESTIMATE.
Definition: ins_int.c:146
float xdotdot
Definition: hf_float.h:42
static abi_event accel_ev
Definition: ins_int.c:133
#define INT32_SPEED_OF_CM_S_NUM
void b2_hff_propagate(void)
Definition: hf_float.c:470
float ydot
Definition: hf_float.h:45
static void send_ins(struct transport_tx *trans, struct link_device *dev)
Definition: ins_int.c:156
General stabilization interface for rotorcrafts.
int32_t stabilization_cmd[COMMANDS_NB]
Stabilization commands.
Definition: stabilization.c:28
void b2_hff_update_gps(struct FloatVect2 *pos_ned, struct FloatVect2 *speed_ned)
Definition: hf_float.c:532
void int32_rmat_transp_vmult(struct Int32Vect3 *vb, struct Int32RMat *m_b2a, struct Int32Vect3 *va)
rotate 3D vector by transposed rotation matrix.
void vff_update(float z_meas)
Definition: vf_float.c:189
static void baro_cb(uint8_t sender_id, float pressure)
Definition: ins_int.c:319
int32_t x
in centimeters
struct LtpDef_i ltp_def
Definition: ins_int.h:40
void vff_update_baro(float z_meas)
rotation matrix
struct EcefCoor_i ecef_vel
speed ECEF in cm/s
Definition: gps.h:89
#define SPEED_BFP_OF_REAL(_af)
struct LlaCoor_i lla_pos
position in LLA (lat,lon: deg*1e7; alt: mm over ellipsoid)
Definition: gps.h:86
static float pprz_isa_height_of_pressure(float pressure, float ref_p)
Get relative altitude from pressure (using simplified equation).
Definition: pprz_isa.h:95
#define ACCEL_BFP_OF_REAL(_af)
int32_t lat
in degrees*1e7
#define INS_VFF_R_GPS
Definition: ins_int.c:97
uint8_t fix
status of fix
Definition: gps.h:99
#define INS_INT_GPS_ID
Definition: ins_int.c:137
Rotation quaternion.
struct GpsState gps
global GPS state
Definition: gps.c:75
void ins_int_propagate(struct Int32Vect3 *accel, float dt)
Definition: ins_int.c:275
struct NedCoor_i ltp_speed
Definition: ins_int.h:57
void sim_overwrite_ins(void)
void ltp_def_from_ecef_i(struct LtpDef_i *def, struct EcefCoor_i *ecef)
struct State state
Definition: state.c:36
void b2_hff_update_vel(struct FloatVect2 vel, struct FloatVect2 Rvel)
Definition: hf_float.c:757
int8_t register_periodic_telemetry(struct periodic_telemetry *_pt, uint8_t _id, telemetry_cb _cb)
Register a telemetry callback function.
Definition: telemetry.c:46
void ins_reset_altitude_ref(void)
INS altitude reference reset.
Definition: ins_int.c:260
float ydotdot
Definition: hf_float.h:46
INS for rotorcrafts combining vertical and horizontal filters.
#define GpsFixValid()
Definition: gps.h:43