stm32f3xx-hal 0.4.1

Peripheral access API for STM32F3 series microcontrollers
Documentation
1
2
3
4
5
6
7
8
9
/* Linker script for the STM32F303VCT6 */
MEMORY
{
  CCRAM : ORIGIN = 0x10000000, LENGTH = 8K
  FLASH : ORIGIN = 0x08000000, LENGTH = 256K
  RAM : ORIGIN = 0x20000000, LENGTH = 40K
}

_stack_start = ORIGIN(CCRAM) + LENGTH(CCRAM);