EmBitz

Full Version: STM32F303VC project via wizard
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I just did a simple project for STM32F303VC through the wizard. The amount of RAM is incorrectly set to 48K, but must be 40K. The total SRAM memory is 48KB, but this includes 8KB CCMRAM.
EmBitz version 2.41.

Code:
MEMORY
{
     FLASH  (rx) : ORIGIN = 0x08000000, LENGTH = 256K       /*  Main FLASH memory  */
       RAM (rwx) : ORIGIN = 0x20000000, LENGTH = 48K        /*  Main RAM memory  */
    CCMRAM (rwx) : ORIGIN = 0x10000000, LENGTH = 8K         /*  Core Coupled RAM Memory  */
}