Paparazzi UAS  v5.8.2_stable-0-g6260b7c
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 #include "generated/flight_plan.h"
58 
59 
60 #if USE_SONAR
61 #if !USE_VFF_EXTENDED
62 #error USE_SONAR needs USE_VFF_EXTENDED
63 #endif
64 
66 #ifndef INS_SONAR_ID
67 #define INS_SONAR_ID ABI_BROADCAST
68 #endif
70 static void sonar_cb(uint8_t sender_id, float distance);
71 
72 #ifdef INS_SONAR_THROTTLE_THRESHOLD
74 #endif
75 
76 #ifndef INS_SONAR_OFFSET
77 #define INS_SONAR_OFFSET 0.
78 #endif
79 #ifndef INS_SONAR_MIN_RANGE
80 #define INS_SONAR_MIN_RANGE 0.001
81 #endif
82 #ifndef INS_SONAR_MAX_RANGE
83 #define INS_SONAR_MAX_RANGE 4.0
84 #endif
85 #define VFF_R_SONAR_0 0.1
86 #ifndef VFF_R_SONAR_OF_M
87 #define VFF_R_SONAR_OF_M 0.2
88 #endif
89 
90 #ifndef INS_SONAR_UPDATE_ON_AGL
91 #define INS_SONAR_UPDATE_ON_AGL FALSE
92 PRINT_CONFIG_MSG("INS_SONAR_UPDATE_ON_AGL defaulting to FALSE")
93 #endif
94 
95 #endif // USE_SONAR
96 
97 #ifndef INS_VFF_R_GPS
98 #define INS_VFF_R_GPS 2.0
99 #endif
100 
102 #ifndef INS_MAX_PROPAGATION_STEPS
103 #define INS_MAX_PROPAGATION_STEPS 200
104 #endif
105 
106 #ifndef USE_INS_NAV_INIT
107 #define USE_INS_NAV_INIT TRUE
108 PRINT_CONFIG_MSG("USE_INS_NAV_INIT defaulting to TRUE")
109 #endif
110 
111 #ifdef INS_BARO_SENS
112 #warning INS_BARO_SENS is obsolete, please remove it from your airframe file.
113 #endif
114 
116 #ifndef INS_BARO_ID
117 #if USE_BARO_BOARD
118 #define INS_BARO_ID BARO_BOARD_SENDER_ID
119 #else
120 #define INS_BARO_ID ABI_BROADCAST
121 #endif
122 #endif
123 PRINT_CONFIG_VAR(INS_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
135 
136 
140 #ifndef INS_INT_VEL_ID
141 #define INS_INT_VEL_ID ABI_BROADCAST
142 #endif
144 static void vel_est_cb(uint8_t sender_id, uint32_t stamp, float x, float y, float z, float noise);
145 
147 
148 #if PERIODIC_TELEMETRY
150 
151 static void send_ins(struct transport_tx *trans, struct link_device *dev)
152 {
153  pprz_msg_send_INS(trans, dev, AC_ID,
157 }
158 
159 static void send_ins_z(struct transport_tx *trans, struct link_device *dev)
160 {
161  pprz_msg_send_INS_Z(trans, dev, AC_ID,
163 }
164 
165 static void send_ins_ref(struct transport_tx *trans, struct link_device *dev)
166 {
167  if (ins_int.ltp_initialized) {
168  pprz_msg_send_INS_REF(trans, dev, AC_ID,
172  }
173 }
174 #endif
175 
176 static void ins_init_origin_from_flightplan(void);
177 static void ins_ned_to_state(void);
178 static void ins_update_from_vff(void);
179 #if USE_HFF
180 static void ins_update_from_hff(void);
181 #endif
182 
183 
184 void ins_int_init(void)
185 {
186 
187 #if USE_INS_NAV_INIT
190 #else
192 #endif
193 
194  /* we haven't had any measurement updates yet, so set the counter to max */
196 
197  // Bind to BARO_ABS message
198  AbiBindMsgBARO_ABS(INS_BARO_ID, &baro_ev, baro_cb);
200 
201 #if USE_SONAR
202  ins_int.update_on_agl = INS_SONAR_UPDATE_ON_AGL;
203  // Bind to AGL message
204  AbiBindMsgAGL(INS_SONAR_ID, &sonar_ev, sonar_cb);
205 #endif
206 
209 
210  /* init vertical and horizontal filters */
211  vff_init_zero();
212 #if USE_HFF
213  b2_hff_init(0., 0., 0., 0.);
214 #endif
215 
219 
220 #if PERIODIC_TELEMETRY
221  register_periodic_telemetry(DefaultPeriodic, PPRZ_MSG_ID_INS, send_ins);
222  register_periodic_telemetry(DefaultPeriodic, PPRZ_MSG_ID_INS_Z, send_ins_z);
223  register_periodic_telemetry(DefaultPeriodic, PPRZ_MSG_ID_INS_REF, send_ins_ref);
224 #endif
225 }
226 
228 {
229 #if USE_GPS
230  if (GpsFixValid()) {
236  } else {
238  }
239 #else
241 #endif
242 
243 #if USE_HFF
245 #endif
247 }
248 
250 {
251 #if USE_GPS
252  struct LlaCoor_i lla = {
254  .lon = state.ned_origin_i.lla.lon,
255  .alt = gps.lla_pos.alt
256  };
260 #endif
262 }
263 
264 void ins_int_propagate(struct Int32Vect3 *accel, float dt)
265 {
266  /* untilt accels */
267  struct Int32Vect3 accel_meas_body;
268  struct Int32RMat *body_to_imu_rmat = orientationGetRMat_i(&imu.body_to_imu);
269  int32_rmat_transp_vmult(&accel_meas_body, body_to_imu_rmat, accel);
270  struct Int32Vect3 accel_meas_ltp;
271  int32_rmat_transp_vmult(&accel_meas_ltp, stateGetNedToBodyRMat_i(), &accel_meas_body);
272 
273  float z_accel_meas_float = ACCEL_FLOAT_OF_BFP(accel_meas_ltp.z);
274 
275  /* Propagate only if we got any measurement during the last INS_MAX_PROPAGATION_STEPS.
276  * Otherwise halt the propagation to not diverge and only set the acceleration.
277  * This should only be relevant in the startup phase when the baro is not yet initialized
278  * and there is no gps fix yet...
279  */
281  vff_propagate(z_accel_meas_float, dt);
283  } else {
284  // feed accel from the sensors
285  // subtract -9.81m/s2 (acceleration measured due to gravity,
286  // but vehicle not accelerating in ltp)
287  ins_int.ltp_accel.z = accel_meas_ltp.z + ACCEL_BFP_OF_REAL(9.81);
288  }
289 
290 #if USE_HFF
291  /* propagate horizontal filter */
293  /* convert and copy result to ins_int */
294  ins_update_from_hff();
295 #else
296  ins_int.ltp_accel.x = accel_meas_ltp.x;
297  ins_int.ltp_accel.y = accel_meas_ltp.y;
298 #endif /* USE_HFF */
299 
301 
302  /* increment the propagation counter, while making sure it doesn't overflow */
305  }
306 }
307 
308 static void baro_cb(uint8_t __attribute__((unused)) sender_id, float pressure)
309 {
310  if (!ins_int.baro_initialized && pressure > 1e-7) {
311  // wait for a first positive value
312  ins_int.qfe = pressure;
314  }
315 
317  if (ins_int.vf_reset) {
319  ins_int.qfe = pressure;
320  vff_realign(0.);
322  } else {
324 #if USE_VFF_EXTENDED
326 #else
328 #endif
329  }
331 
332  /* reset the counter to indicate we just had a measurement update */
334  }
335 }
336 
337 #if USE_GPS
338 void ins_int_update_gps(struct GpsState *gps_s)
339 {
340  if (gps_s->fix < GPS_FIX_3D) {
341  return;
342  }
343 
344  if (!ins_int.ltp_initialized) {
346  }
347 
348  struct NedCoor_i gps_pos_cm_ned;
349  ned_of_ecef_point_i(&gps_pos_cm_ned, &ins_int.ltp_def, &gps_s->ecef_pos);
350 
351  /* calculate body frame position taking BODY_TO_GPS translation (in cm) into account */
352 #ifdef INS_BODY_TO_GPS_X
353  /* body2gps translation in body frame */
354  struct Int32Vect3 b2g_b = {
355  .x = INS_BODY_TO_GPS_X,
356  .y = INS_BODY_TO_GPS_Y,
357  .z = INS_BODY_TO_GPS_Z
358  };
359  /* rotate offset given in body frame to navigation/ltp frame using current attitude */
360  struct Int32Quat q_b2n = *stateGetNedToBodyQuat_i();
361  QUAT_INVERT(q_b2n, q_b2n);
362  struct Int32Vect3 b2g_n;
363  int32_quat_vmult(&b2g_n, &q_b2n, &b2g_b);
364  /* subtract body2gps translation in ltp from gps position */
365  VECT3_SUB(gps_pos_cm_ned, b2g_n);
366 #endif
367 
369  struct NedCoor_i gps_speed_cm_s_ned;
370  ned_of_ecef_vect_i(&gps_speed_cm_s_ned, &ins_int.ltp_def, &gps_s->ecef_vel);
371 
372 #if INS_USE_GPS_ALT
373  vff_update_z_conf(((float)gps_pos_cm_ned.z) / 100.0, INS_VFF_R_GPS);
374 #endif
375 
376 #if USE_HFF
377  /* horizontal gps transformed to NED in meters as float */
378  struct FloatVect2 gps_pos_m_ned;
379  VECT2_ASSIGN(gps_pos_m_ned, gps_pos_cm_ned.x, gps_pos_cm_ned.y);
380  VECT2_SDIV(gps_pos_m_ned, gps_pos_m_ned, 100.0f);
381 
382  struct FloatVect2 gps_speed_m_s_ned;
383  VECT2_ASSIGN(gps_speed_m_s_ned, gps_speed_cm_s_ned.x, gps_speed_cm_s_ned.y);
384  VECT2_SDIV(gps_speed_m_s_ned, gps_speed_m_s_ned, 100.);
385 
386  if (ins_int.hf_realign) {
388  const struct FloatVect2 zero = {0.0f, 0.0f};
389  b2_hff_realign(gps_pos_m_ned, zero);
390  }
391  // run horizontal filter
392  b2_hff_update_gps(&gps_pos_m_ned, &gps_speed_m_s_ned);
393  // convert and copy result to ins_int
394  ins_update_from_hff();
395 
396 #else /* hff not used */
397  /* simply copy horizontal pos/speed from gps */
398  INT32_VECT2_SCALE_2(ins_int.ltp_pos, gps_pos_cm_ned,
400  INT32_VECT2_SCALE_2(ins_int.ltp_speed, gps_speed_cm_s_ned,
402 #endif /* USE_HFF */
403 
405 
406  /* reset the counter to indicate we just had a measurement update */
408 }
409 #else
410 void ins_int_update_gps(struct GpsState *gps_s __attribute__((unused))) {}
411 #endif /* USE_GPS */
412 
413 
414 #if USE_SONAR
415 static void sonar_cb(uint8_t __attribute__((unused)) sender_id, float distance)
416 {
417  static float last_offset = 0.;
418 
419  /* update filter assuming a flat ground */
420  if (distance < INS_SONAR_MAX_RANGE && distance > INS_SONAR_MIN_RANGE
421 #ifdef INS_SONAR_THROTTLE_THRESHOLD
422  && stabilization_cmd[COMMAND_THRUST] < INS_SONAR_THROTTLE_THRESHOLD
423 #endif
424 #ifdef INS_SONAR_BARO_THRESHOLD
425  && ins_int.baro_z > -INS_SONAR_BARO_THRESHOLD /* z down */
426 #endif
427  && ins_int.update_on_agl
429  vff_update_z_conf(-(distance), VFF_R_SONAR_0 + VFF_R_SONAR_OF_M * fabsf(distance));
430  last_offset = vff.offset;
431  } else {
432  /* update offset with last value to avoid divergence */
433  vff_update_offset(last_offset);
434  }
435 
436  /* reset the counter to indicate we just had a measurement update */
438 }
439 #endif // USE_SONAR
440 
441 
444 {
445 
446  struct LlaCoor_i llh_nav0; /* Height above the ellipsoid */
447  llh_nav0.lat = NAV_LAT0;
448  llh_nav0.lon = NAV_LON0;
449  /* NAV_ALT0 = ground alt above msl, NAV_MSL0 = geoid-height (msl) over ellipsoid */
450  llh_nav0.alt = NAV_ALT0 + NAV_MSL0;
451 
452  struct EcefCoor_i ecef_nav0;
453  ecef_of_lla_i(&ecef_nav0, &llh_nav0);
454 
455  ltp_def_from_ecef_i(&ins_int.ltp_def, &ecef_nav0);
456  ins_int.ltp_def.hmsl = NAV_ALT0;
458 
459 }
460 
462 static void ins_ned_to_state(void)
463 {
467 
468 #if defined SITL && USE_NPS
469  if (nps_bypass_ins) {
470  sim_overwrite_ins();
471  }
472 #endif
473 }
474 
476 static void ins_update_from_vff(void)
477 {
481 }
482 
483 #if USE_HFF
484 
485 static void ins_update_from_hff(void)
486 {
493 }
494 #endif
495 
496 
497 static void accel_cb(uint8_t sender_id __attribute__((unused)),
498  uint32_t stamp, struct Int32Vect3 *accel)
499 {
500  PRINT_CONFIG_MSG("Calculating dt for INS int propagation.")
501  /* timestamp in usec when last callback was received */
502  static uint32_t last_stamp = 0;
503 
504  if (last_stamp > 0) {
505  float dt = (float)(stamp - last_stamp) * 1e-6;
506  ins_int_propagate(accel, dt);
507  }
508  last_stamp = stamp;
509 }
510 
511 static void gps_cb(uint8_t sender_id __attribute__((unused)),
512  uint32_t stamp __attribute__((unused)),
513  struct GpsState *gps_s)
514 {
515  ins_int_update_gps(gps_s);
516 }
517 
518 static void vel_est_cb(uint8_t sender_id __attribute__((unused)),
519  uint32_t stamp __attribute__((unused)),
520  float x, float y, float z,
521  float noise __attribute__((unused)))
522 {
523 
524  struct FloatVect3 vel_body = {x, y, z};
525 
526  /* rotate velocity estimate to nav/ltp frame */
527  struct FloatQuat q_b2n = *stateGetNedToBodyQuat_f();
528  QUAT_INVERT(q_b2n, q_b2n);
529  struct FloatVect3 vel_ned;
530  float_quat_vmult(&vel_ned, &q_b2n, &vel_body);
531 
532 #if USE_HFF
533  struct FloatVect2 vel = {vel_ned.x, vel_ned.y};
534  struct FloatVect2 Rvel = {noise, noise};
535 
536  b2_hff_update_vel(vel, Rvel);
537  ins_update_from_hff();
538 #else
541 #endif
542 
544 
545  /* reset the counter to indicate we just had a measurement update */
547 }
548 
550 {
552 
553  /*
554  * Subscribe to scaled IMU measurements and attach callbacks
555  */
556  AbiBindMsgIMU_ACCEL_INT32(INS_INT_IMU_ID, &accel_ev, accel_cb);
557  AbiBindMsgGPS(ABI_BROADCAST, &gps_ev, gps_cb);
558  AbiBindMsgVELOCITY_ESTIMATE(INS_INT_VEL_ID, &vel_est_ev, vel_est_cb);
559 }
static void stateSetPositionNed_i(struct NedCoor_i *ned_pos)
Set position from local NED coordinates (int).
Definition: state.h:514
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:134
static struct Int32RMat * orientationGetRMat_i(struct OrientationReps *orientation)
Get vehicle body attitude rotation matrix (int).
float y
in meters
void vff_update_z_conf(float z_meas, float conf)
Generic transmission transport header.
Definition: transport.h:89
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:1090
abi_event sonar_ev
Definition: agl_dist.c:51
static abi_event vel_est_ev
Definition: ins_int.c:143
vector in EarthCenteredEarthFixed coordinates
struct InsInt ins_int
global INS state
Definition: ins_int.c:146
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:518
float qfe
Definition: ins_int.h:62
#define POS_BFP_OF_REAL(_af)
#define QUAT_INVERT(_qo, _qi)
Definition: pprz_algebra.h:563
#define INS_BARO_ID
default barometer to use in INS
Definition: ins_int.c:120
static void ins_update_from_vff(void)
update ins state from vertical filter
Definition: ins_int.c:476
#define INT32_VECT3_ZERO(_v)
Main include for ABI (AirBorneInterface).
static void gps_cb(uint8_t sender_id, uint32_t stamp, struct GpsState *gps_s)
Definition: ins_int.c:511
void ins_reset_local_origin(void)
INS local origin reset.
Definition: ins_int.c:227
void ins_int_register(void)
Definition: ins_int.c:549
#define VECT2_ASSIGN(_a, _x, _y)
Definition: pprz_algebra.h:61
bool_t vf_reset
request to reset vertical filter.
Definition: ins_int.h:53
float z
z-position estimate in m (NED, z-down)
#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:746
#define GPS_FIX_3D
3D GPS fix
Definition: gps.h:43
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:1084
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:338
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:1102
#define FALSE
Definition: std.h:5
int32_t alt
in millimeters above WGS84 reference ellipsoid
Vertical filter (in float) estimating altitude, velocity and accel bias.
float z
in meters
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:957
#define INT32_VECT2_SCALE_2(_a, _b, _num, _den)
#define TRUE
Definition: std.h:4
bool_t hf_realign
request to realign horizontal filter.
Definition: ins_int.h:48
int32_t hmsl
height above mean sea level in mm
Definition: gps.h:71
data structure for GPS information
Definition: gps.h:67
bool_t baro_initialized
Definition: ins_int.h:63
void ins_int_init(void)
Definition: ins_int.c:184
#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:440
Device independent GPS code (interface)
Paparazzi atmospheric pressure conversion utilities.
#define ACCEL_FLOAT_OF_BFP(_ai)
struct Imu imu
global IMU state
Definition: imu_aspirin2.c:43
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:68
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:462
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:103
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:497
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)
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:53
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:69
struct LtpDef_i ned_origin_i
Definition of the local (flat earth) coordinate system.
Definition: state.h:162
#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
bool_t ltp_initialized
Definition: ins_int.h:41
#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:141
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
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:308
int32_t x
in centimeters
struct LtpDef_i ltp_def
Definition: ins_int.h:40
#define ABI_BROADCAST
Broadcast address.
Definition: abi_common.h:56
void vff_update_baro(float z_meas)
rotation matrix
void ecef_of_lla_i(struct EcefCoor_i *out, struct LlaCoor_i *in)
struct EcefCoor_i ecef_vel
speed ECEF in cm/s
Definition: gps.h:72
#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:69
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)
static void ins_init_origin_from_flightplan(void)
initialize the local origin (ltp_def) from flight plan position
Definition: ins_int.c:443
int32_t lat
in degrees*1e7
#define INS_VFF_R_GPS
Definition: ins_int.c:98
uint8_t fix
status of fix
Definition: gps.h:82
void ins_register_impl(InsInit init)
Definition: ins.c:53
Rotation quaternion.
struct GpsState gps
global GPS state
Definition: gps.c:41
void ins_int_propagate(struct Int32Vect3 *accel, float dt)
Definition: ins_int.c:264
struct NedCoor_i ltp_speed
Definition: ins_int.h:57
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:249
float x
in meters
float ydotdot
Definition: hf_float.h:46
INS for rotorcrafts combining vertical and horizontal filters.
#define GpsFixValid()
Definition: gps.h:47