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_bmp.c File Reference

Bosch BMP085 I2C sensor interface. More...

#include "baro_bmp.h"
#include "peripherals/bmp085_regs.h"
#include "mcu_periph/sys_time.h"
#include "mcu_periph/i2c.h"
#include "led.h"
#include "mcu_periph/uart.h"
#include "subsystems/abi.h"
#include "messages.h"
#include "subsystems/datalink/downlink.h"
+ Include dependency graph for baro_bmp.c:

Go to the source code of this file.

Macros

#define BMP_I2C_DEV   i2c0
 
#define BARO_BMP_R   0.5
 
#define BARO_BMP_SIGMA2   0.1
 

Functions

void baro_bmp_init (void)
 
void baro_bmp_periodic (void)
 
void baro_bmp_event (void)
 

Variables

struct Bmp085 baro_bmp
 
bool_t baro_bmp_enabled
 
float baro_bmp_r
 
float baro_bmp_sigma2
 
int32_t baro_bmp_alt
 

Detailed Description

Bosch BMP085 I2C sensor interface.

This reads the values for pressure and temperature from the Bosch BMP085 sensor through I2C.

Definition in file baro_bmp.c.

Macro Definition Documentation

#define BARO_BMP_R   0.5

Definition at line 48 of file baro_bmp.c.

Referenced by baro_bmp_init().

#define BARO_BMP_SIGMA2   0.1

Definition at line 49 of file baro_bmp.c.

Referenced by baro_bmp_init().

#define BMP_I2C_DEV   i2c0

Definition at line 45 of file baro_bmp.c.

Referenced by baro_bmp_init().

Function Documentation

void baro_bmp_event ( void  )
void baro_bmp_init ( void  )

Definition at line 59 of file baro_bmp.c.

References baro_bmp, baro_bmp_enabled, BARO_BMP_R, baro_bmp_r, BARO_BMP_SIGMA2, baro_bmp_sigma2, bmp085_init(), BMP085_SLAVE_ADDR, BMP_I2C_DEV, and TRUE.

+ Here is the call graph for this function:

void baro_bmp_periodic ( void  )

Definition at line 70 of file baro_bmp.c.

References baro_bmp, bmp085_periodic(), bmp085_read_eeprom_calib(), and Bmp085::initialized.

+ Here is the call graph for this function:

Variable Documentation

struct Bmp085 baro_bmp

Definition at line 52 of file baro_bmp.c.

Referenced by baro_bmp_event(), baro_bmp_init(), and baro_bmp_periodic().

int32_t baro_bmp_alt

Definition at line 57 of file baro_bmp.c.

Referenced by baro_bmp_event().

bool_t baro_bmp_enabled

Definition at line 54 of file baro_bmp.c.

Referenced by alt_kalman(), and baro_bmp_init().

float baro_bmp_r

Definition at line 55 of file baro_bmp.c.

Referenced by alt_kalman(), and baro_bmp_init().

float baro_bmp_sigma2

Definition at line 56 of file baro_bmp.c.

Referenced by alt_kalman(), and baro_bmp_init().