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
lis302dl_spi.h
Go to the documentation of this file.
1/*
2 * Copyright (C) 2013 Felix Ruess <felix.ruess@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 LIS302DL_SPI_H
29#define LIS302DL_SPI_H
30
31#include "std.h"
33#include "mcu_periph/spi.h"
34
35/* Include common LIS302DL options and definitions */
37
38
42 volatile uint8_t tx_buf[2];
43 volatile uint8_t rx_buf[8];
46 volatile bool data_available;
47 union {
48 struct Int8Vect3 vect;
49 int8_t value[3];
52};
53
54// Functions
55extern void lis302dl_spi_init(struct Lis302dl_Spi *lis, struct spi_periph *spi_p, uint8_t addr);
57extern void lis302dl_spi_read(struct Lis302dl_Spi *lis);
58extern void lis302dl_spi_event(struct Lis302dl_Spi *lis);
59
61static inline void lis302dl_spi_periodic(struct Lis302dl_Spi *lis)
62{
63 if (lis->initialized) {
65 } else {
67 }
68}
69
70#endif // LIS302DL_SPI_H
SPI peripheral structure.
Definition spi.h:174
SPI transaction structure.
Definition spi.h:148
ST LIS302DL 3-axis accelerometer driver common interface (I2C and SPI).
Lis302dlConfStatus
Definition lis302dl.h:34
bool initialized
config done flag
void lis302dl_spi_event(struct Lis302dl_Spi *lis)
volatile uint8_t rx_buf[8]
enum Lis302dlConfStatus init_status
init status
volatile uint8_t tx_buf[2]
void lis302dl_spi_init(struct Lis302dl_Spi *lis, struct spi_periph *spi_p, uint8_t addr)
struct spi_transaction spi_trans
void lis302dl_spi_read(struct Lis302dl_Spi *lis)
union Lis302dl_Spi::@332 data
volatile bool data_available
data ready flag
struct Lis302dlConfig config
void lis302dl_spi_start_configure(struct Lis302dl_Spi *lis)
struct spi_periph * spi_p
static void lis302dl_spi_periodic(struct Lis302dl_Spi *lis)
convenience function: read or start configuration if not already initialized
uint16_t foo
Definition main_demo5.c:58
Paparazzi fixed point algebra.
Architecture independent SPI (Serial Peripheral Interface) API.
unsigned char uint8_t
Typedef defining 8 bit unsigned char type.
signed char int8_t
Typedef defining 8 bit char type.