1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-16 21:05:35 +03:00

Merge pull request #9870 from mikeller/add_extended_custom_defaults_stm32f745

Moved custom defaults to dedicated block for STM32F745.
This commit is contained in:
Michael Keller 2020-06-03 07:05:21 +12:00 committed by GitHub
commit ad11592011
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,10 +1,6 @@
ifeq ($(TARGET), STM32F405)
F405_TARGETS += $(TARGET)
# Use a full block (16 kB) of flash for custom defaults - with 1 MB flash we have more than we know how to use anyway
CUSTOM_DEFAULTS_EXTENDED = yes
else
ifeq ($(TARGET), STM32F411)
F411_TARGETS += $(TARGET)
@ -20,6 +16,13 @@ endif
endif
endif
ifeq ($(TARGET), $(filter $(TARGET), STM32F405 STM32F745))
# Use a full block (16 kB) of flash for custom defaults - with 1 MB flash we have more than we know how to use anyway
CUSTOM_DEFAULTS_EXTENDED = yes
endif
FEATURES += VCP SDCARD_SPI SDCARD_SDIO ONBOARDFLASH
TARGET_SRC = \