Paparazzi UAS  v7.0_unstable
Paparazzi is a free software Unmanned Aircraft System.
baro_ms5611_spi.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 "modules/core/abi.h"
35 #include "mcu_periph/uart.h"
36 #include "pprzlink/messages.h"
38 
39 #ifndef MS5611_SPI_DEV
40 #define MS5611_SPI_DEV spi1
41 #endif
42 
43 #ifndef MS5611_SLAVE_IDX
44 #define MS5611_SLAVE_IDX SPI_SLAVE0
45 #endif
46 
47 
48 struct Ms5611_Spi baro_ms5611;
49 
54 
57 
58 
59 void baro_ms5611_init(void)
60 {
62 
63  baro_ms5611_enabled = true;
64  baro_ms5611_alt_valid = false;
65 
68 }
69 
71 {
72 
74 
75 #if SENSOR_SYNC_SEND
76  // send coeff every 30s
77  RunOnceEvery((5 * BARO_MS5611_PERIODIC_CHECK_FREQ), baro_ms5611_send_coeff());
78 #endif
79 
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 }
Main include for ABI (AirBorneInterface).
#define BARO_MS5611_SENDER_ID
#define BARO_MS5611_R
#define BARO_MS5611_SIGMA2
float baro_ms5611_sigma2
bool baro_ms5611_alt_valid
float baro_ms5611_alt
struct Ms5611_Spi baro_ms5611
void baro_ms5611_periodic_check(void)
float ftempms
void baro_ms5611_init(void)
float fbaroms
bool baro_ms5611_enabled
void baro_ms5611_read(void)
trigger new measurement or initialize if needed
void baro_ms5611_send_coeff(void)
float baro_ms5611_r
void baro_ms5611_event(void)
#define MS5611_SPI_DEV
#define MS5611_SLAVE_IDX
Measurement Specialties (Intersema) MS5611-01BA pressure/temperature sensor interface for SPI.
uint32_t get_sys_time_usec(void)
Get the time in microseconds since startup.
Definition: sys_time_arch.c:71
static float pprz_isa_altitude_of_pressure(float pressure)
Get absolute altitude from pressure (using simplified equation).
Definition: pprz_isa.h:82
uint32_t d2
Definition: ms5611.h:56
uint32_t d1
Definition: ms5611.h:55
uint32_t pressure
pressure in Pascal (0.01mbar)
Definition: ms5611.h:52
int32_t temperature
temperature with 0.01 degrees Celsius resolution
Definition: ms5611.h:53
uint16_t c[PROM_NB]
Definition: ms5611.h:54
void ms5611_spi_event(struct Ms5611_Spi *ms)
Definition: ms5611_spi.c:133
void ms5611_spi_periodic_check(struct Ms5611_Spi *ms)
Periodic function to ensure proper delay after triggering reset or conversion.
Definition: ms5611_spi.c:92
void ms5611_spi_init(struct Ms5611_Spi *ms, struct spi_periph *spi_p, uint8_t slave_idx, bool is_ms5607)
Definition: ms5611_spi.c:33
struct Ms5611Data data
Definition: ms5611_spi.h:45
bool initialized
config done flag
Definition: ms5611_spi.h:43
volatile bool data_available
data ready flag
Definition: ms5611_spi.h:44
static void ms5611_spi_read(struct Ms5611_Spi *ms)
convenience function to trigger new measurement.
Definition: ms5611_spi.h:61
Paparazzi atmospheric pressure conversion utilities.
#define FALSE
Definition: std.h:5
Architecture independent timing functions.
volatile uint32_t nb_sec
full seconds since startup
Definition: sys_time.h:72
arch independent UART (Universal Asynchronous Receiver/Transmitter) API
unsigned int uint32_t
Typedef defining 32 bit unsigned int type.
Definition: vl53l1_types.h:78