1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-23 00:05:33 +03:00

Add tests for BMP280 barometer

Also get rid of the curved quotes for normal quotes (") and make
compensation computations static.
This commit is contained in:
Sean Vig 2015-09-17 00:27:25 -05:00 committed by Dominic Clifton
parent 0f87d1ff87
commit e5f3f1794f
3 changed files with 186 additions and 9 deletions

View file

@ -0,0 +1,154 @@
/*
* This file is part of Cleanflight.
*
* Cleanflight is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Cleanflight is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Cleanflight. If not, see <http://www.gnu.org/licenses/>.
*/
#include <stdint.h>
extern "C" {
void bmp280_calculate(int32_t *pressure, int32_t *temperature);
extern uint32_t bmp280_up;
extern uint32_t bmp280_ut;
typedef struct bmp280_calib_param_t {
uint16_t dig_T1; /* calibration T1 data */
int16_t dig_T2; /* calibration T2 data */
int16_t dig_T3; /* calibration T3 data */
uint16_t dig_P1; /* calibration P1 data */
int16_t dig_P2; /* calibration P2 data */
int16_t dig_P3; /* calibration P3 data */
int16_t dig_P4; /* calibration P4 data */
int16_t dig_P5; /* calibration P5 data */
int16_t dig_P6; /* calibration P6 data */
int16_t dig_P7; /* calibration P7 data */
int16_t dig_P8; /* calibration P8 data */
int16_t dig_P9; /* calibration P9 data */
int32_t t_fine; /* calibration t_fine data */
} bmp280_calib_param_t;
bmp280_calib_param_t bmp280_cal;
}
#include "unittest_macros.h"
#include "gtest/gtest.h"
TEST(baroBmp280Test, TestBmp280Calculate)
{
// given
int32_t pressure, temperature;
bmp280_up = 415148; // Digital pressure value
bmp280_ut = 519888; // Digital temperature value
// and
bmp280_cal.dig_T1 = 27504;
bmp280_cal.dig_T2 = 26435;
bmp280_cal.dig_T3 = -1000;
bmp280_cal.dig_P1 = 36477;
bmp280_cal.dig_P2 = -10685;
bmp280_cal.dig_P3 = 3024;
bmp280_cal.dig_P4 = 2855;
bmp280_cal.dig_P5 = 140;
bmp280_cal.dig_P6 = -7;
bmp280_cal.dig_P7 = 15500;
bmp280_cal.dig_P8 = -14600;
bmp280_cal.dig_P9 = 6000;
// when
bmp280_calculate(&pressure, &temperature);
// then
EXPECT_EQ(100653, pressure); // 100653 Pa
EXPECT_EQ(2500, temperature); // 25.00 degC (data sheet says 25.08)
}
TEST(baroBmp280Test, TestBmp280CalculateHighP)
{
// given
int32_t pressure, temperature;
bmp280_up = 215148; // Digital pressure value
bmp280_ut = 519888; // Digital temperature value
// and
bmp280_cal.dig_T1 = 27504;
bmp280_cal.dig_T2 = 26435;
bmp280_cal.dig_T3 = -1000;
bmp280_cal.dig_P1 = 36477;
bmp280_cal.dig_P2 = -10685;
bmp280_cal.dig_P3 = 3024;
bmp280_cal.dig_P4 = 2855;
bmp280_cal.dig_P5 = 140;
bmp280_cal.dig_P6 = -7;
bmp280_cal.dig_P7 = 15500;
bmp280_cal.dig_P8 = -14600;
bmp280_cal.dig_P9 = 6000;
// when
bmp280_calculate(&pressure, &temperature);
// then
EXPECT_EQ(135382, pressure); // 135385 Pa
EXPECT_EQ(2500, temperature); // 25.00 degC (data sheet says 25.08)
}
TEST(baroBmp280Test, TestBmp280CalculateZeroP)
{
// given
int32_t pressure, temperature;
bmp280_up = 415148; // Digital pressure value
bmp280_ut = 519888; // Digital temperature value
// and
bmp280_cal.dig_T1 = 27504;
bmp280_cal.dig_T2 = 26435;
bmp280_cal.dig_T3 = -1000;
bmp280_cal.dig_P1 = 0;
bmp280_cal.dig_P2 = -10685;
bmp280_cal.dig_P3 = 3024;
bmp280_cal.dig_P4 = 2855;
bmp280_cal.dig_P5 = 140;
bmp280_cal.dig_P6 = -7;
bmp280_cal.dig_P7 = 15500;
bmp280_cal.dig_P8 = -14600;
bmp280_cal.dig_P9 = 6000;
// when
bmp280_calculate(&pressure, &temperature);
// then
EXPECT_EQ(0, pressure); // P1=0 trips pressure to 0 Pa, avoiding division by zero
EXPECT_EQ(2500, temperature); // 25.00 degC (data sheet says 25.08)
}
// STUBS
extern "C" {
void delay(uint32_t) {}
bool i2cWrite(uint8_t, uint8_t, uint8_t) {
return 1;
}
bool i2cRead(uint8_t, uint8_t, uint8_t, uint8_t) {
return 1;
}
}