mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-25 01:05:27 +03:00
BMP388 - Add support for BMP388 barometer.
BMP388 - Move the static assert. BMP388 - Build faster when the baro driver is not enabled. BMP388 - Fix spi init due to changes in master. BMP388 - Add missing bmp388 unit test files. BMP388 - Remove debug code. BMP388 - Prepare EXTI/EOC handling for unified targets. BMP388 - enable on unified targets. BMP388 - Add support to NUCLEOF722. BMP388 - Add support to NUCLEOH743. BMP388 - Add BMP388 (via SPI) support to NUCLEOF7 * For some CI visibility on the conditional baro SPI code. NUCLEOH743 - Add LPS baro for more CI visibility. Remove whitespace, as requested. Move barometer `#defines` into the implementations. Cleanup style of method names in baro drivers.
This commit is contained in:
parent
aba49b39ae
commit
53167b161f
25 changed files with 842 additions and 169 deletions
|
@ -135,7 +135,7 @@ const char * const lookupTableGyroHardware[] = {
|
|||
#if defined(USE_SENSOR_NAMES) || defined(USE_BARO)
|
||||
// sync with baroSensor_e
|
||||
const char * const lookupTableBaroHardware[] = {
|
||||
"AUTO", "NONE", "BMP085", "MS5611", "BMP280", "LPS", "QMP6988"
|
||||
"AUTO", "NONE", "BMP085", "MS5611", "BMP280", "LPS", "QMP6988", "BMP388"
|
||||
};
|
||||
#endif
|
||||
#if defined(USE_SENSOR_NAMES) || defined(USE_MAG)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue