Paparazzi UAS v7.0_unstable
Paparazzi is a free software Unmanned Aircraft System.
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
lps25h_i2c.h
Go to the documentation of this file.
1/*
2 * Copyright (C) 2019 Alexis Cornard <alexiscornard@gmail.com>
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
28#ifndef LPS25H_I2C_H
29#define LPS25H_I2C_H
30
31#include "std.h"
33#include "mcu_periph/i2c.h"
34
35/* Include common LPS25H options and definitions */
36#include "peripherals/lps25h.h"
37
47
48// Functions
49extern void lps25h_i2c_init(struct Lps25h_I2c *lps, struct i2c_periph *i2c_p, uint8_t addr);
50extern void lps25h_i2c_start_configure(struct Lps25h_I2c *lps);
51extern void lps25h_i2c_read(struct Lps25h_I2c *lps);
52extern void lps25h_i2c_event(struct Lps25h_I2c *lps);
55
56// convenience function: read or start configuration if not already initialized
57static inline void lps25h_i2c_periodic(struct Lps25h_I2c *lps)
58{
59 if (lps->initialized) {
61 } else {
63 }
64}
65
66#endif // LPS25H_I2C_H
I2C transaction structure.
Definition i2c.h:93
Architecture independent I2C (Inter-Integrated Circuit Bus) API.
LPS25H barometer driver interface.
Lps25hConfStatus
Definition lps25h.h:36
float lps25h_readPressureMillibars(int32_t press)
Definition lps25h_i2c.c:101
bool initialized
config done flag
Definition lps25h_i2c.h:42
struct i2c_periph * i2c_p
Definition lps25h_i2c.h:39
void lps25h_i2c_event(struct Lps25h_I2c *lps)
Definition lps25h_i2c.c:110
void lps25h_i2c_start_configure(struct Lps25h_I2c *lps)
Definition lps25h_i2c.c:76
void lps25h_i2c_init(struct Lps25h_I2c *lps, struct i2c_periph *i2c_p, uint8_t addr)
Definition lps25h_i2c.c:33
static void lps25h_i2c_periodic(struct Lps25h_I2c *lps)
Definition lps25h_i2c.h:57
volatile bool data_available
data ready flag
Definition lps25h_i2c.h:43
void lps25h_i2c_read(struct Lps25h_I2c *lps)
Definition lps25h_i2c.c:87
struct i2c_transaction i2c_trans
Definition lps25h_i2c.h:40
enum Lps25hConfStatus init_status
init status
Definition lps25h_i2c.h:41
int32_t data
Definition lps25h_i2c.h:44
float pressureToAltMeters(float pressure_mbar, float altimeter_setting_mbar)
Definition lps25h_i2c.c:106
struct Lps25hConfig config
Definition lps25h_i2c.h:45
uint16_t foo
Definition main_demo5.c:58
Paparazzi fixed point algebra.
int int32_t
Typedef defining 32 bit int type.
unsigned char uint8_t
Typedef defining 8 bit unsigned char type.