aboutsummaryrefslogblamecommitdiff
path: root/src/modules/position_estimator_inav/inertial_filter.h
blob: 18c194abf26030b1578b8d01c679dc5d2d736b34 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13












                                                                            
/*
 * inertial_filter.h
 *
 *   Copyright (C) 2013 Anton Babushkin. All rights reserved.
 *   Author: 	Anton Babushkin	<rk3dov@gmail.com>
 */

#include <stdbool.h>
#include <drivers/drv_hrt.h>

void inertial_filter_predict(float dt, float x[3]);

void inertial_filter_correct(float dt, float x[3], int i, float z, float w);