Paparazzi UAS  v5.8.2_stable-0-g6260b7c
Paparazzi is a free software Unmanned Aircraft System.
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
baro_ms5611_i2c.c
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2011-2013 The Paparazzi Team
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  */
22 
31 
32 #include "math/pprz_isa.h"
33 #include "mcu_periph/sys_time.h"
34 #include "subsystems/abi.h"
35 #include "mcu_periph/uart.h"
36 #include "messages.h"
38 
39 
40 #ifndef MS5611_I2C_DEV
41 #define MS5611_I2C_DEV i2c0
42 #endif
43 
44 /* address can be 0xEC or 0xEE (CSB\ low = 0xEE) */
45 #ifndef MS5611_SLAVE_ADDR
46 #define MS5611_SLAVE_ADDR 0xEE
47 #endif
48 
50 
55 
58 
59 
60 void baro_ms5611_init(void)
61 {
63 
66 
69 }
70 
72 {
73 
75 
76 #if SENSOR_SYNC_SEND
77  // send coeff every 30s
78  RunOnceEvery((30 * BARO_MS5611_PERIODIC_CHECK_FREQ), baro_ms5611_send_coeff());
79 #endif
80 }
81 
83 void baro_ms5611_read(void)
84 {
85  if (sys_time.nb_sec > 1) {
87  }
88 }
89 
91 {
92 
94 
96  float pressure = (float)baro_ms5611.data.pressure;
97  AbiSendMsgBARO_ABS(BARO_MS5611_SENDER_ID, pressure);
98  float temp = baro_ms5611.data.temperature / 100.0f;
99  AbiSendMsgTEMPERATURE(BARO_MS5611_SENDER_ID, temp);
101 
104 
105 #ifdef SENSOR_SYNC_SEND
106  fbaroms = baro_ms5611.data.pressure / 100.;
107  DOWNLINK_SEND_BARO_MS5611(DefaultChannel, DefaultDevice,
109  &fbaroms, &temp);
110 #endif
111  }
112 }
113 
115 {
116  if (baro_ms5611.initialized) {
117  DOWNLINK_SEND_MS5611_COEFF(DefaultChannel, DefaultDevice,
118  &baro_ms5611.data.c[0],
119  &baro_ms5611.data.c[1],
120  &baro_ms5611.data.c[2],
121  &baro_ms5611.data.c[3],
122  &baro_ms5611.data.c[4],
123  &baro_ms5611.data.c[5],
124  &baro_ms5611.data.c[6],
125  &baro_ms5611.data.c[7]);
126  }
127 }
uint32_t d1
Definition: ms5611.h:55
bool_t baro_ms5611_enabled
arch independent UART (Universal Asynchronous Receiver/Transmitter) API
float baro_ms5611_sigma2
uint16_t c[PROM_NB]
Definition: ms5611.h:54
void baro_ms5611_init(void)
float baro_ms5611_alt
struct Ms5611Data data
Definition: ms5611_i2c.h:43
bool_t initialized
config done flag
Definition: ms5611_i2c.h:41
uint32_t pressure
pressure in Pascal (0.01mbar)
Definition: ms5611.h:52
Main include for ABI (AirBorneInterface).
void baro_ms5611_send_coeff(void)
#define BARO_MS5611_R
float fbaroms
uint32_t d2
Definition: ms5611.h:56
#define FALSE
Definition: std.h:5
void baro_ms5611_event(void)
#define TRUE
Definition: std.h:4
static float pprz_isa_altitude_of_pressure(float pressure)
Get absolute altitude from pressure (using simplified equation).
Definition: pprz_isa.h:75
#define BARO_MS5611_SENDER_ID
float ftempms
Architecture independent timing functions.
Paparazzi atmospheric pressure conversion utilities.
void ms5611_i2c_event(struct Ms5611_I2c *ms)
Definition: ms5611_i2c.c:119
volatile bool_t data_available
data ready flag
Definition: ms5611_i2c.h:42
void ms5611_i2c_init(struct Ms5611_I2c *ms, struct i2c_periph *i2c_p, uint8_t addr, bool_t is_ms5607)
Definition: ms5611_i2c.c:33
void baro_ms5611_read(void)
trigger new measurement or initialize if needed
struct Ms5611_I2c baro_ms5611
#define MS5611_SLAVE_ADDR
volatile uint32_t nb_sec
full seconds since startup
Definition: sys_time.h:69
static void ms5611_i2c_read(struct Ms5611_I2c *ms)
convenience function to trigger new measurement.
Definition: ms5611_i2c.h:59
#define MS5611_I2C_DEV
#define BARO_MS5611_SIGMA2
int32_t temperature
temperature with 0.01 degrees Celsius resolution
Definition: ms5611.h:53
void ms5611_i2c_periodic_check(struct Ms5611_I2c *ms)
Periodic function to ensure proper delay after triggering reset or conversion.
Definition: ms5611_i2c.c:78
bool_t baro_ms5611_alt_valid
float baro_ms5611_r
void baro_ms5611_periodic_check(void)