EmBitz
STM32F303VC project via wizard - Printable Version

+- EmBitz (https://www.embitz.org/forum)
+-- Forum: IDE (https://www.embitz.org/forum/forum-1.html)
+--- Forum: Bug report (https://www.embitz.org/forum/forum-8.html)
+--- Thread: STM32F303VC project via wizard (/thread-125.html)



STM32F303VC project via wizard - PDonchev - 09-06-2022

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  */
}