1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2024-11-29 07:24:13 +01:00

OP-1477 - enable temp compensation and fix axis orders

This commit is contained in:
Alessio Morale 2014-09-07 22:43:36 +02:00
parent 4890ef3ab0
commit bcb30ecbf3

View File

@ -245,9 +245,10 @@ static const struct pios_hmc5x83_cfg pios_mag_cfg = {
#endif
.M_ODR = PIOS_HMC5x83_ODR_75,
.Meas_Conf = PIOS_HMC5x83_MEASCONF_NORMAL,
.Gain = PIOS_HMC5x83_GAIN_1_9,
.Mode = PIOS_HMC5x83_MODE_CONTINUOUS,
.Gain = PIOS_HMC5x83_GAIN_1_9,
.Mode = PIOS_HMC5x83_MODE_CONTINUOUS,
.Driver = &PIOS_HMC5x83_SPI_DRIVER,
.TempCompensation = true,
};
#endif /* PIOS_INCLUDE_HMC5883 */