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

Fixed bootloader requests for RAM based targets.

This commit is contained in:
mikeller 2019-08-04 16:14:56 +12:00
parent 521e09fbf8
commit 6d93fe0a40
2 changed files with 2 additions and 2 deletions

View file

@ -191,7 +191,7 @@ TARGET_FLAGS := -DUSE_EXST $(TARGET_FLAGS)
endif
ifeq ($(RAM_BASED),yes)
TARGET_FLAGS := -DUSE_EXST -DCONFIG_IN_RAM $(TARGET_FLAGS)
TARGET_FLAGS := -DUSE_EXST -DCONFIG_IN_RAM -DRAMBASED $(TARGET_FLAGS)
endif
ifeq ($(SIMULATOR_BUILD),yes)

View file

@ -361,7 +361,7 @@ extern uint8_t __config_start; // configured via linker script when building b
extern uint8_t __config_end;
#endif
#if defined(USE_EXST)
#if defined(USE_EXST) && !defined(RAMBASED)
#define USE_FLASH_BOOT_LOADER
#endif