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

Merge pull request #6514 from bforbort/LIS3MDL

Add support for ST LIS3MDL MEMS Magnetometer
This commit is contained in:
Michael Keller 2018-09-20 22:54:58 +12:00 committed by GitHub
commit 2a529c8119
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
57 changed files with 260 additions and 8 deletions

View file

@ -126,7 +126,7 @@ const char * const lookupTableBaroHardware[] = {
#if defined(USE_SENSOR_NAMES) || defined(USE_MAG)
// sync with magSensor_e
const char * const lookupTableMagHardware[] = {
"AUTO", "NONE", "HMC5883", "AK8975", "AK8963", "QMC5883"
"AUTO", "NONE", "HMC5883", "AK8975", "AK8963", "QMC5883", "LIS3MDL"
};
#endif
#if defined(USE_SENSOR_NAMES) || defined(USE_RANGEFINDER)