8000 stm32/Makefile: Print info messages about use of mboot/QSPI flash. · micropython/micropython@205c6d0 · GitHub
[go: up one dir, main page]

Skip to content

Commit 205c6d0

Browse files
committed
stm32/Makefile: Print info messages about use of mboot/QSPI flash.
1 parent 5da60ff commit 205c6d0

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

ports/stm32/Makefile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -513,6 +513,12 @@ $(BUILD)/firmware.elf: $(OBJ)
513513
$(ECHO) "LINK $@"
514514
$(Q)$(LD) $(LDFLAGS) -o $@ $^ $(LDFLAGS_MOD) $(LIBS)
515515
$(Q)$(SIZE) $@
516+
ifneq ($(TEXT0_ADDR),0x08000000)
517+
$(ECHO) "INFO: this build requires mboot to be installed first"
518+
endif
519+
ifeq ($(TEXT1_ADDR),0x90000000)
520+
$(ECHO) "INFO: this build places firmware in external QSPI flash"
521+
endif
516522

517523
PLLVALUES = boards/pllvalues.py
518524
MAKE_PINS = boards/make-pins.py

0 commit comments

Comments
 (0)
0