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.
26 lines
650 B
26 lines
650 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 |
|
|
|
BOARD_TYPE := 70 |
|
BOARD_REV := 0 |
|
BOOTLOADER := F4LightF405_bl |
|
|
|
# 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
|
|
|