Cleaned up Unified Target definition.

This commit is contained in:
mikeller 2020-10-11 14:56:43 +13:00
parent 9017506517
commit 7c1b1f77d5
1 changed files with 6 additions and 8 deletions

View File

@ -25,10 +25,6 @@
#define USBD_PRODUCT_STRING "Betaflight STM32F405"
// Additional drivers included for targets with > 512KB of flash
#define USE_ACCGYRO_BMI270
#define USE_BARO_BMP085
#define USE_I2C_DEVICE_1
#define USE_I2C_DEVICE_2
#define USE_I2C_DEVICE_3
@ -116,10 +112,6 @@
#define USBD_PRODUCT_STRING "Betaflight STM32F745"
// Additional drivers included for targets with > 512KB of flash
#define USE_ACCGYRO_BMI270
#define USE_BARO_BMP085
#define USE_I2C_DEVICE_1
#define USE_I2C_DEVICE_2
#define USE_I2C_DEVICE_3
@ -258,3 +250,9 @@
#define USE_RX_SPEKTRUM_TELEMETRY
#define USE_CUSTOM_DEFAULTS
// Additional drivers included for targets with > 512KB of flash
#if (TARGET_FLASH_SIZE > 512)
#define USE_ACCGYRO_BMI270
#define USE_BARO_BMP085
#endif