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:
parent
521e09fbf8
commit
6d93fe0a40
2 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue