f9d142523c
- STM32F407VGT6 (1MB of Flash, 192+4 Kbytes of SRAM) - 5V (via USB) or Li-Polymer Battery (3.7V) power input - 2 x LEDs - 2 x user switches - 2 x mikroBUS sockets - 2 x 1x26 mikromedia-compatible headers (52 pins) https://www.mikroe.com/clicker-2-stm32f4
14 lines
435 B
Makefile
14 lines
435 B
Makefile
MCU_SERIES = f4
|
|
CMSIS_MCU = STM32F407xx
|
|
AF_FILE = boards/stm32f405_af.csv
|
|
ifeq ($(USE_MBOOT),1)
|
|
# When using Mboot all the text goes together after the filesystem
|
|
LD_FILES = boards/stm32f405.ld boards/common_blifs.ld
|
|
TEXT0_ADDR = 0x08020000
|
|
else
|
|
# When not using Mboot the ISR text goes first, then the rest after the filesystem
|
|
LD_FILES = boards/stm32f405.ld boards/common_ifs.ld
|
|
TEXT0_ADDR = 0x08000000
|
|
TEXT1_ADDR = 0x08020000
|
|
endif
|