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
baro_board.c
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
26#include "std.h"
27
29#include "peripherals/bmp085.h"
31#include <libopencm3/stm32/gpio.h>
32#include "modules/core/abi.h"
33
34#include "led.h"
35
36
38
39static bool baro_eoc(void)
40{
41 return gpio_get(GPIOB, GPIO0);
42}
43
44void baro_init(void)
45{
47
48 /* setup eoc check function */
50
54
55#ifdef BARO_LED
57#endif
58}
59
60
69
70
71
Main include for ABI (AirBorneInterface).
#define BARO_BOARD_SENDER_ID
default onboard baro
void baro_periodic(void)
Definition baro_board.c:90
void baro_init(void)
Definition baro_board.c:76
Common barometric sensor implementation.
void bmp085_init(struct Bmp085 *bmp, struct i2c_periph *i2c_p, uint8_t addr)
Definition bmp085.c:83
void bmp085_event(struct Bmp085 *bmp)
Definition bmp085.c:142
void bmp085_read_eeprom_calib(struct Bmp085 *bmp)
Definition bmp085.c:73
void bmp085_periodic(struct Bmp085 *bmp)
Start new measurement if idle or read temp/pressure.
Definition bmp085.c:108
Bosch BMP085 driver interface.
int32_t pressure
pressure in Pascal
Definition bmp085.h:73
Bmp085EOC eoc
function to check End Of Conversion
Definition bmp085.h:65
int32_t temperature
temperature in 0.1 deg Celcius
Definition bmp085.h:72
bool initialized
config done flag
Definition bmp085.h:67
volatile bool data_available
data ready flag
Definition bmp085.h:68
Bosch BMP085 register definitions.
#define BMP085_SLAVE_ADDR
Definition bmp085_regs.h:57
#define LED_OFF(i)
Definition led_hw.h:52
#define LED_TOGGLE(i)
Definition led_hw.h:53
static void gpio_clear(ioportid_t port, uint16_t pin)
Clear a gpio output to low level.
Definition gpio_arch.h:114
static uint8_t gpio_get(ioportid_t port, uint16_t pin)
Get level of a gpio.
Definition gpio_arch.h:94
uint32_t get_sys_time_usec(void)
Get the time in microseconds since startup.
#define GPIO0
Definition gpio_def.h:31
arch independent LED (Light Emitting Diodes) API
void baro_event(void)
Definition baro_board.c:72
static bool baro_eoc(void)
Definition baro_board.c:39
struct Bmp085 baro_bmp085
Definition baro_board.c:37
uint16_t foo
Definition main_demo5.c:58
#define GPIOB
Definition gpio_arch.h:35
unsigned int uint32_t
Typedef defining 32 bit unsigned int type.