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_bmp.c
Go to the documentation of this file.
1/*
2 * Copyright (C) 2010 Martin Mueller
3 * Copyright (C) 2013 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, write to
19 * the Free Software Foundation, 59 Temple Place - Suite 330,
20 * Boston, MA 02111-1307, USA.
21 *
22 */
23
32#include "baro_bmp.h"
34
35#include "mcu_periph/sys_time.h"
36#include "mcu_periph/i2c.h"
37#include "led.h"
38#include "mcu_periph/uart.h"
39#include "modules/core/abi.h"
40#include "pprzlink/messages.h"
42
43
44#ifndef BMP_I2C_DEV
45#define BMP_I2C_DEV i2c0
46#endif
47
48#define BARO_BMP_R 0.5
49#define BARO_BMP_SIGMA2 0.1
50
51
53
58
69
71{
72
75 } else {
77 }
78
79}
80
82{
83
85
88 float tmp = baro_bmp.pressure / 101325.0; // pressure at sea level
89 tmp = pow(tmp, 0.190295);
90 baro_bmp_alt = 44330 * (1.0 - tmp);
91
94 float temp = baro_bmp.temperature / 10.0f;
97
98#ifdef SENSOR_SYNC_SEND
102#else
107#endif
108 }
109}
Main include for ABI (AirBorneInterface).
#define BARO_BMP_SENDER_ID
#define BARO_BOARD_SENDER_ID
default onboard baro
bool baro_bmp_enabled
Definition baro_bmp.c:54
struct Bmp085 baro_bmp
Definition baro_bmp.c:52
void baro_bmp_periodic(void)
Definition baro_bmp.c:70
float baro_bmp_r
Definition baro_bmp.c:55
void baro_bmp_event(void)
Definition baro_bmp.c:81
#define BARO_BMP_SIGMA2
Definition baro_bmp.c:49
int32_t baro_bmp_alt
Definition baro_bmp.c:57
void baro_bmp_init(void)
Definition baro_bmp.c:59
#define BMP_I2C_DEV
Definition baro_bmp.c:45
float baro_bmp_sigma2
Definition baro_bmp.c:56
#define BARO_BMP_R
Definition baro_bmp.c:48
Bosch BMP085 I2C sensor interface.
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
int32_t up
uncompensated pressure
Definition bmp085.h:71
int32_t pressure
pressure in Pascal
Definition bmp085.h:73
int32_t temperature
temperature in 0.1 deg Celcius
Definition bmp085.h:72
bool initialized
config done flag
Definition bmp085.h:67
int32_t ut
uncompensated temperature
Definition bmp085.h:70
volatile bool data_available
data ready flag
Definition bmp085.h:68
Bosch BMP085 register definitions.
#define BMP085_SLAVE_ADDR
Definition bmp085_regs.h:57
uint32_t get_sys_time_usec(void)
Get the time in microseconds since startup.
Architecture independent I2C (Inter-Integrated Circuit Bus) API.
arch independent LED (Light Emitting Diodes) API
uint16_t foo
Definition main_demo5.c:58
Architecture independent timing functions.
arch independent UART (Universal Asynchronous Receiver/Transmitter) API
int int32_t
Typedef defining 32 bit int type.
unsigned int uint32_t
Typedef defining 32 bit unsigned int type.