1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-02-18 08:54:15 +01:00

Fixed invalid value for MS5611 oversample configuration

This commit is contained in:
a*morale 2012-11-02 17:31:51 +01:00
parent f5ad9ae3f0
commit cfbdaddc94

View File

@ -131,7 +131,7 @@ static const struct pios_hmc5883_cfg pios_hmc5883_cfg = {
#if defined(PIOS_INCLUDE_MS5611)
#include "pios_ms5611.h"
static const struct pios_ms5611_cfg pios_ms5611_cfg = {
.oversampling = 1,
.oversampling = MS5611_OSR_512,
};
#endif /* PIOS_INCLUDE_MS5611 */