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
lsm6ds33_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 LSM6_I2C_H
29#define LSM6_I2C_H
30
31#include "std.h"
33#include "mcu_periph/i2c.h"
34
35/* Include common LSM6DS33 options and definitions */
37
38struct Lsm6_I2c {
43 volatile bool data_available;
44 union {
45 struct Int16Vect3 vect;
46 int16_t value[3];
48 union {
49 struct Int16Rates rates;
50 int16_t value[3];
53};
54
55// Functions
56extern void lsm6_i2c_init(struct Lsm6_I2c *lsm, struct i2c_periph *i2c_p, uint8_t addr);
57extern void lsm6_i2c_start_configure(struct Lsm6_I2c *lsm);
58extern void lsm6_i2c_read(struct Lsm6_I2c *lsm);
59extern void lsm6_i2c_event(struct Lsm6_I2c *lsm);
60
62static inline void lsm6_i2c_periodic(struct Lsm6_I2c *lsm)
63{
64 if (lsm->initialized) {
66 } else {
68 }
69}
70
71#endif // LSM6_I2C_H
I2C transaction structure.
Definition i2c.h:93
Architecture independent I2C (Inter-Integrated Circuit Bus) API.
LSM6DS33 accelerometer and gyrometer driver I2C interface.
Lsm6ConfStatus
Definition lsm6ds33.h:102
void lsm6_i2c_read(struct Lsm6_I2c *lsm)
void lsm6_i2c_start_configure(struct Lsm6_I2c *lsm)
struct Lsm6Config config
volatile bool data_available
data ready flag
union Lsm6_I2c::@340 data_g
void lsm6_i2c_init(struct Lsm6_I2c *lsm, struct i2c_periph *i2c_p, uint8_t addr)
enum Lsm6ConfStatus init_status
init status
struct i2c_transaction i2c_trans
static void lsm6_i2c_periodic(struct Lsm6_I2c *lsm)
convenience function: read or start configuration if not already initialized
void lsm6_i2c_event(struct Lsm6_I2c *lsm)
struct i2c_periph * i2c_p
union Lsm6_I2c::@339 data_xl
bool initialized
config done flag
uint16_t foo
Definition main_demo5.c:58
Paparazzi fixed point algebra.
short int16_t
Typedef defining 16 bit short type.
unsigned char uint8_t
Typedef defining 8 bit unsigned char type.