Paparazzi UAS  v5.14.0_stable-0-g3f680d1
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 "subsystems/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 
55 float baro_bmp_r;
58 
59 void baro_bmp_init(void)
60 {
61 
63 
66  baro_bmp_enabled = true;
67 
68 }
69 
71 {
72 
73  if (baro_bmp.initialized) {
75  } else {
77  }
78 
79 }
80 
81 void baro_bmp_event(void)
82 {
83 
85 
87 
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 
92  float pressure = (float)baro_bmp.pressure;
93  AbiSendMsgBARO_ABS(BARO_BMP_SENDER_ID, pressure);
94  float temp = baro_bmp.temperature / 10.0f;
95  AbiSendMsgTEMPERATURE(BARO_BOARD_SENDER_ID, temp);
96  baro_bmp.data_available = false;
97 
98 #ifdef SENSOR_SYNC_SEND
99  DOWNLINK_SEND_BMP_STATUS(DefaultChannel, DefaultDevice, &baro_bmp.up,
102 #else
103  RunOnceEvery(10, DOWNLINK_SEND_BMP_STATUS(DefaultChannel, DefaultDevice,
104  &baro_bmp.up, &baro_bmp.ut,
107 #endif
108  }
109 }
int32_t up
uncompensated pressure
Definition: bmp085.h:71
arch independent UART (Universal Asynchronous Receiver/Transmitter) API
void baro_bmp_periodic(void)
Definition: baro_bmp.c:70
#define BARO_BMP_SIGMA2
Definition: baro_bmp.c:49
#define BARO_BMP_R
Definition: baro_bmp.c:48
#define BARO_BMP_SENDER_ID
Main include for ABI (AirBorneInterface).
int32_t baro_bmp_alt
Definition: baro_bmp.c:57
Definition: bmp085.h:62
#define BMP085_SLAVE_ADDR
Definition: bmp085_regs.h:57
Bosch BMP085 I2C sensor interface.
int32_t temperature
temperature in 0.1 deg Celcius
Definition: bmp085.h:72
Architecture independent timing functions.
void bmp085_read_eeprom_calib(struct Bmp085 *bmp)
Definition: bmp085.c:73
void baro_bmp_init(void)
Definition: baro_bmp.c:59
bool baro_bmp_enabled
Definition: baro_bmp.c:54
#define BARO_BOARD_SENDER_ID
default onboard baro
float baro_bmp_sigma2
Definition: baro_bmp.c:56
float baro_bmp_r
Definition: baro_bmp.c:55
void bmp085_init(struct Bmp085 *bmp, struct i2c_periph *i2c_p, uint8_t addr)
Definition: bmp085.c:83
signed long int32_t
Definition: types.h:19
struct Bmp085 baro_bmp
Definition: baro_bmp.c:52
Bosch BMP085 register definitions.
#define BMP_I2C_DEV
Definition: baro_bmp.c:45
int32_t pressure
pressure in Pascal
Definition: bmp085.h:73
volatile bool data_available
data ready flag
Definition: bmp085.h:68
bool initialized
config done flag
Definition: bmp085.h:67
arch independent LED (Light Emitting Diodes) API
int32_t ut
uncompensated temperature
Definition: bmp085.h:70
void bmp085_periodic(struct Bmp085 *bmp)
Start new measurement if idle or read temp/pressure.
Definition: bmp085.c:108
void bmp085_event(struct Bmp085 *bmp)
Definition: bmp085.c:142
void baro_bmp_event(void)
Definition: baro_bmp.c:81
Architecture independent I2C (Inter-Integrated Circuit Bus) API.