From 5b40061bf9478bca45d2965dfe04f4857e16b1bd Mon Sep 17 00:00:00 2001 From: Zaltora Date: Wed, 7 Sep 2016 13:43:17 +0200 Subject: [PATCH] Update bmp280.h --- extras/bmp280/bmp280.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/extras/bmp280/bmp280.h b/extras/bmp280/bmp280.h index 8a43ad0..8a46860 100644 --- a/extras/bmp280/bmp280.h +++ b/extras/bmp280/bmp280.h @@ -65,6 +65,7 @@ typedef enum { * Pressure oversampling settings */ typedef enum { + BMP280_SKIPPED = 0, /* disable */ BMP280_ULTRA_LOW_POWER = 1, /* oversampling x1 */ BMP280_LOW_POWER = 2, /* oversampling x2 */ BMP280_STANDARD = 3, /* oversampling x4 */ @@ -94,6 +95,7 @@ typedef struct { BMP280_Mode mode; BMP280_Filter filter; BMP280_Oversampling oversampling; // pressure oversampling + BMP280_Oversampling oversampling_temperature; // temperature oversampling BMP280_Oversampling oversampling_humidity; BMP280_StandbyTime standby; } bmp280_params_t;