Paparazzi UAS  v5.18.0_stable
Paparazzi is a free software Unmanned Aircraft System.
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 "pprzlink/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 
64  baro_ms5611_enabled = true;
65  baro_ms5611_alt_valid = false;
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  uint32_t now_ts = get_sys_time_usec();
97  float pressure = (float)baro_ms5611.data.pressure;
98  AbiSendMsgBARO_ABS(BARO_MS5611_SENDER_ID, now_ts, pressure);
99  float temp = baro_ms5611.data.temperature / 100.0f;
100  AbiSendMsgTEMPERATURE(BARO_MS5611_SENDER_ID, temp);
101  baro_ms5611.data_available = false;
102 
104  baro_ms5611_alt_valid = true;
105 
106 #ifdef SENSOR_SYNC_SEND
107  fbaroms = baro_ms5611.data.pressure / 100.;
108  DOWNLINK_SEND_BARO_MS5611(DefaultChannel, DefaultDevice,
110  &fbaroms, &temp);
111 #endif
112  }
113 }
114 
116 {
117  if (baro_ms5611.initialized) {
118  DOWNLINK_SEND_MS5611_COEFF(DefaultChannel, DefaultDevice,
119  &baro_ms5611.data.c[0],
120  &baro_ms5611.data.c[1],
121  &baro_ms5611.data.c[2],
122  &baro_ms5611.data.c[3],
123  &baro_ms5611.data.c[4],
124  &baro_ms5611.data.c[5],
125  &baro_ms5611.data.c[6],
126  &baro_ms5611.data.c[7]);
127  }
128 }
Ms5611_I2c::initialized
bool initialized
config done flag
Definition: ms5611_i2c.h:41
baro_ms5611_r
float baro_ms5611_r
Definition: baro_ms5611_i2c.c:56
Ms5611Data::temperature
int32_t temperature
temperature with 0.01 degrees Celsius resolution
Definition: ms5611.h:53
baro_ms5611_i2c.h
abi.h
baro_ms5611_sigma2
float baro_ms5611_sigma2
Definition: baro_ms5611_i2c.c:57
ms5611_i2c_init
void ms5611_i2c_init(struct Ms5611_I2c *ms, struct i2c_periph *i2c_p, uint8_t addr, bool is_ms5607)
Definition: ms5611_i2c.c:33
ms5611_i2c_read
static void ms5611_i2c_read(struct Ms5611_I2c *ms)
convenience function to trigger new measurement.
Definition: ms5611_i2c.h:59
baro_ms5611_read
void baro_ms5611_read(void)
trigger new measurement or initialize if needed
Definition: baro_ms5611_i2c.c:83
uint32_t
unsigned long uint32_t
Definition: types.h:18
Ms5611Data::d2
uint32_t d2
Definition: ms5611.h:56
MS5611_SLAVE_ADDR
#define MS5611_SLAVE_ADDR
Definition: baro_ms5611_i2c.c:46
get_sys_time_usec
uint32_t get_sys_time_usec(void)
Get the time in microseconds since startup.
Definition: sys_time_arch.c:68
baro_ms5611_alt_valid
bool baro_ms5611_alt_valid
Definition: baro_ms5611_i2c.c:53
uart.h
arch independent UART (Universal Asynchronous Receiver/Transmitter) API
pprz_isa_altitude_of_pressure
static float pprz_isa_altitude_of_pressure(float pressure)
Get absolute altitude from pressure (using simplified equation).
Definition: pprz_isa.h:82
BARO_MS5611_SIGMA2
#define BARO_MS5611_SIGMA2
Definition: baro_ms5611_i2c.h:10
Ms5611_I2c::data_available
volatile bool data_available
data ready flag
Definition: ms5611_i2c.h:42
fbaroms
float fbaroms
Definition: baro_ms5611_i2c.c:51
Ms5611_I2c
Definition: ms5611_i2c.h:36
Ms5611_I2c::data
struct Ms5611Data data
Definition: ms5611_i2c.h:43
MS5611_I2C_DEV
#define MS5611_I2C_DEV
Definition: baro_ms5611_i2c.c:41
sys_time.h
Architecture independent timing functions.
baro_ms5611_init
void baro_ms5611_init(void)
Definition: baro_ms5611_i2c.c:60
ms5611_i2c_event
void ms5611_i2c_event(struct Ms5611_I2c *ms)
Definition: ms5611_i2c.c:119
baro_ms5611_periodic_check
void baro_ms5611_periodic_check(void)
Definition: baro_ms5611_i2c.c:71
baro_ms5611
struct Ms5611_I2c baro_ms5611
Definition: baro_ms5611_i2c.c:49
BARO_MS5611_R
#define BARO_MS5611_R
Definition: baro_ms5611_i2c.h:9
ms5611_i2c_periodic_check
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
sys_time
Definition: sys_time.h:71
baro_ms5611_alt
float baro_ms5611_alt
Definition: baro_ms5611_i2c.c:52
baro_ms5611_event
void baro_ms5611_event(void)
Definition: baro_ms5611_i2c.c:90
FALSE
#define FALSE
Definition: std.h:5
sys_time::nb_sec
volatile uint32_t nb_sec
full seconds since startup
Definition: sys_time.h:72
baro_ms5611_send_coeff
void baro_ms5611_send_coeff(void)
Definition: baro_ms5611_i2c.c:115
BARO_MS5611_SENDER_ID
#define BARO_MS5611_SENDER_ID
Definition: abi_sender_ids.h:40
ftempms
float ftempms
Definition: baro_ms5611_i2c.c:51
Ms5611Data::pressure
uint32_t pressure
pressure in Pascal (0.01mbar)
Definition: ms5611.h:52
Ms5611Data::d1
uint32_t d1
Definition: ms5611.h:55
Ms5611Data::c
uint16_t c[PROM_NB]
Definition: ms5611.h:54
pprz_isa.h
Paparazzi atmospheric pressure conversion utilities.
baro_ms5611_enabled
bool baro_ms5611_enabled
Definition: baro_ms5611_i2c.c:54