From b775ebd883960d22e75346de8bd5b45889e0c523 Mon Sep 17 00:00:00 2001 From: philsson Date: Fri, 31 Aug 2018 13:54:40 +0200 Subject: [PATCH] Fixed includes for Baro --- src/drivers/MS5611.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/drivers/MS5611.cpp b/src/drivers/MS5611.cpp index 847a65d..660cd24 100644 --- a/src/drivers/MS5611.cpp +++ b/src/drivers/MS5611.cpp @@ -13,8 +13,8 @@ //! //! @todo -#include "mbed.h" -#include "ms5611.h" +#include +#include "MS5611.h" double P; // compensated pressure value (mB) double T; // compensated temperature value (degC) @@ -408,4 +408,4 @@ float ms5611::getSeaLevelBaroM(float known_alt) { S = pow(pow((P * INHG), 0.190284) + 0.00001313 * known_alt * FTMETERS , 5.2553026) * MB; return((float)S); } - \ No newline at end of file +