You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
558 B
22 lines
558 B
# Board-specific configuration values. Flash and SRAM sizes in bytes. |
|
|
|
MCU := STM32F405RG |
|
PRODUCT_ID := 0003 |
|
DENSITY := STM32_HIGH_DENSITY |
|
FLASH_SIZE := 1048576 |
|
SRAM_SIZE := 131072 |
|
|
|
# Memory target-specific configuration values |
|
|
|
ifeq ($(MEMORY_TARGET), ram) |
|
LDSCRIPT := ram.ld |
|
VECT_BASE_ADDR := VECT_TAB_RAM |
|
endif |
|
ifeq ($(MEMORY_TARGET), flash) |
|
LDSCRIPT := flash.ld |
|
VECT_BASE_ADDR := VECT_TAB_FLASH |
|
endif |
|
ifeq ($(MEMORY_TARGET), jtag) |
|
LDSCRIPT := jtag.ld |
|
VECT_BASE_ADDR := VECT_TAB_BASE |
|
endif
|
|
|