mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-26 01:35:41 +03:00
added fake barometer sensor name to cli lookup table, fixes cli status crash for SITL (#12474)
This commit is contained in:
parent
c224c075f8
commit
2c71c1fc5b
1 changed files with 1 additions and 1 deletions
|
@ -150,7 +150,7 @@ const char * const lookupTableGyroHardware[] = {
|
||||||
#if defined(USE_SENSOR_NAMES) || defined(USE_BARO)
|
#if defined(USE_SENSOR_NAMES) || defined(USE_BARO)
|
||||||
// sync with baroSensor_e
|
// sync with baroSensor_e
|
||||||
const char * const lookupTableBaroHardware[] = {
|
const char * const lookupTableBaroHardware[] = {
|
||||||
"AUTO", "NONE", "BMP085", "MS5611", "BMP280", "LPS", "QMP6988", "BMP388", "DPS310", "2SMPB_02B"
|
"AUTO", "NONE", "BMP085", "MS5611", "BMP280", "LPS", "QMP6988", "BMP388", "DPS310", "2SMPB_02B", "FAKE"
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
#if defined(USE_SENSOR_NAMES) || defined(USE_MAG)
|
#if defined(USE_SENSOR_NAMES) || defined(USE_MAG)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue