Paparazzi UAS  v7.0_unstable
Paparazzi is a free software Unmanned Aircraft System.
airspeed_ms45xx_i2c.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2014 Freek van Tienen <freek.v.tienen@gmail.com>
3  * 2014 Felix Ruess <felix.ruess@gmail.com>
4  *
5  * This file is part of paparazzi
6  *
7  * paparazzi is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2, or (at your option)
10  * any later version.
11  *
12  * paparazzi is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with paparazzi; see the file COPYING. If not, see
19  * <http://www.gnu.org/licenses/>.
20  */
21 
26 #ifndef AIRSPEED_MS45XX_I2C_H
27 #define AIRSPEED_MS45XX_I2C_H
28 
29 #include "std.h"
30 
32  float pressure;
35  float airspeed;
40  bool offset_set;
41 };
42 
43 extern struct AirspeedMs45xx ms45xx;
44 
45 extern void ms45xx_i2c_init(void);
46 extern void ms45xx_i2c_periodic(void);
47 extern void ms45xx_i2c_event(void);
48 
49 #endif
float pressure_scale
Scaling factor from raw measurement to Pascal.
bool autoset_offset
Set offset value from current filtered value.
void ms45xx_i2c_event(void)
float pressure_offset
Offset in Pascal.
void ms45xx_i2c_periodic(void)
uint16_t raw_p
Raw pressure.
struct AirspeedMs45xx ms45xx
bool offset_set
Offset is set once.
bool pressure_type
Pressure type Differential of Gauge.
float pressure
(differential) pressure in Pascal
int16_t temperature
Temperature in 0.1 deg Celcius.
void ms45xx_i2c_init(void)
float airspeed
Airspeed in m/s estimated from (differential) pressure.
unsigned short uint16_t
Typedef defining 16 bit unsigned short type.
Definition: vl53l1_types.h:88
short int16_t
Typedef defining 16 bit short type.
Definition: vl53l1_types.h:93