
Compared to the already supported stm32f103xx "bluepill" board this: - features 128 KiB flash memory size ("RB" suffix) instead of 64 KiB, see `targets/stm32f103rb.ld` - has onboard ST-LINK/V2-1 programmer and debugger requiring different OpenOCD configuration file - uses USART2 connected to ST-LINK/V2-1 debugger as virtual COM port over USB for `putchar()` - has a user-accessible button besides the reset button
10 строки
170 Б
Text
10 строки
170 Б
Text
|
|
MEMORY
|
|
{
|
|
FLASH_TEXT (rw) : ORIGIN = 0x08000000, LENGTH = 128K
|
|
RAM (xrw) : ORIGIN = 0x20000000, LENGTH = 20K
|
|
}
|
|
|
|
_stack_size = 2K;
|
|
|
|
INCLUDE "targets/arm.ld"
|