1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-13 11:29:58 +03:00

CLEANUP: small adjustment to the legacy gyro directory (#13693)

* CLEANUP: small adjustment to the legacy gyro directory

* Legacy source explicit declaration.
This commit is contained in:
J Blackman 2024-06-21 03:58:25 +10:00 committed by GitHub
parent 5fd8c02908
commit a84042199d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
13 changed files with 10 additions and 6 deletions

View file

@ -54,19 +54,19 @@
#include "drivers/accgyro/accgyro_spi_lsm6dsv16x.h"
#ifdef USE_ACC_ADXL345
#include "drivers/accgyro_legacy/accgyro_adxl345.h"
#include "drivers/accgyro/legacy/accgyro_adxl345.h"
#endif
#ifdef USE_ACC_BMA280
#include "drivers/accgyro_legacy/accgyro_bma280.h"
#include "drivers/accgyro/legacy/accgyro_bma280.h"
#endif
#ifdef USE_ACC_LSM303DLHC
#include "drivers/accgyro_legacy/accgyro_lsm303dlhc.h"
#include "drivers/accgyro/legacy/accgyro_lsm303dlhc.h"
#endif
#ifdef USE_ACC_MMA8452
#include "drivers/accgyro_legacy/accgyro_mma845x.h"
#include "drivers/accgyro/legacy/accgyro_mma845x.h"
#endif
#include "drivers/bus_spi.h"