2018-09-16 08:01 AM
I've an STM32F103C8T6 CPU, but I can't find appropriate linker file. The closes file is `STM32F101XB_FLASH.ld`. Can I use it with change following line (#43):
FLASH (rx) : ORIGIN = 0x08000000, LENGTH = 128K
to
FLASH (rx) : ORIGIN = 0x08000000, LENGTH = 64K
or there are other differences?
Solved! Go to Solution.
2018-09-16 08:26 AM
FLASH 64K, SRAM 20K
Set the stack pointer to 0x20005000, this has proper alignment, and pre-decrements.
2018-09-16 08:26 AM
FLASH 64K, SRAM 20K
Set the stack pointer to 0x20005000, this has proper alignment, and pre-decrements.
2018-09-16 08:54 AM
thanks a lot