2017-03-09 19:39:17 -04:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "AP_Baro_Backend.h"
|
|
|
|
|
2022-01-26 23:58:56 -04:00
|
|
|
#ifndef AP_BARO_ICM20789_ENABLED
|
|
|
|
#define AP_BARO_ICM20789_ENABLED AP_BARO_BACKEND_DEFAULT_ENABLED
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if AP_BARO_ICM20789_ENABLED
|
|
|
|
|
2017-03-09 19:39:17 -04:00
|
|
|
#include <AP_HAL/AP_HAL.h>
|
|
|
|
#include <AP_HAL/Semaphores.h>
|
|
|
|
#include <AP_HAL/Device.h>
|
|
|
|
|
|
|
|
#ifndef HAL_BARO_ICM20789_I2C_ADDR
|
|
|
|
// the baro is on a separate I2C address from the IMU, even though in
|
|
|
|
// the same package
|
|
|
|
#define HAL_BARO_ICM20789_I2C_ADDR 0x63
|
|
|
|
#endif
|
|
|
|
|
|
|
|
class AP_Baro_ICM20789 : public AP_Baro_Backend
|
|
|
|
{
|
|
|
|
public:
|
2018-11-07 08:11:28 -04:00
|
|
|
void update() override;
|
2017-03-09 19:39:17 -04:00
|
|
|
|
2018-01-07 18:57:57 -04:00
|
|
|
static AP_Baro_Backend *probe(AP_Baro &baro, AP_HAL::OwnPtr<AP_HAL::I2CDevice> dev, AP_HAL::OwnPtr<AP_HAL::Device> dev_imu);
|
2017-03-09 19:39:17 -04:00
|
|
|
|
|
|
|
private:
|
2018-01-07 18:57:57 -04:00
|
|
|
AP_Baro_ICM20789(AP_Baro &baro, AP_HAL::OwnPtr<AP_HAL::I2CDevice> dev, AP_HAL::OwnPtr<AP_HAL::Device> dev_imu);
|
2018-01-01 20:33:08 -04:00
|
|
|
|
2017-03-09 19:39:17 -04:00
|
|
|
bool init();
|
|
|
|
bool send_cmd16(uint16_t cmd);
|
|
|
|
|
|
|
|
bool read_calibration_data(void);
|
|
|
|
|
|
|
|
void convert_data(uint32_t Praw, uint32_t Traw);
|
|
|
|
|
|
|
|
void calculate_conversion_constants(const float p_Pa[3], const float p_LUT[3],
|
|
|
|
float &A, float &B, float &C);
|
|
|
|
float get_pressure(uint32_t p_LSB, uint32_t T_LSB);
|
|
|
|
|
2018-01-07 18:57:57 -04:00
|
|
|
bool imu_spi_init(void);
|
|
|
|
bool imu_i2c_init(void);
|
2017-03-09 19:39:17 -04:00
|
|
|
|
|
|
|
void timer(void);
|
|
|
|
|
|
|
|
// calibration data
|
|
|
|
int16_t sensor_constants[4];
|
|
|
|
|
|
|
|
uint8_t instance;
|
2018-01-07 18:57:57 -04:00
|
|
|
|
|
|
|
AP_HAL::OwnPtr<AP_HAL::I2CDevice> dev;
|
|
|
|
AP_HAL::OwnPtr<AP_HAL::Device> dev_imu;
|
2017-03-09 19:39:17 -04:00
|
|
|
|
|
|
|
// time last read command was sent
|
|
|
|
uint32_t last_measure_us;
|
|
|
|
|
|
|
|
// accumulation structure, protected by _sem
|
|
|
|
struct {
|
|
|
|
float tsum;
|
|
|
|
float psum;
|
|
|
|
uint32_t count;
|
|
|
|
} accum;
|
|
|
|
|
|
|
|
// conversion constants. Thanks to invensense for including python
|
|
|
|
// sample code in the datasheet!
|
|
|
|
const float p_Pa_calib[3] = {45000.0, 80000.0, 105000.0};
|
|
|
|
const float LUT_lower = 3.5 * (1U<<20);
|
|
|
|
const float LUT_upper = 11.5 * (1U<<20);
|
|
|
|
const float quadr_factor = 1 / 16777216.0;
|
|
|
|
const float offst_factor = 2048.0;
|
|
|
|
};
|
2022-01-26 23:58:56 -04:00
|
|
|
|
|
|
|
#endif // AP_BARO_ICM20789_ENABLED
|