STM32 how much memory and RAM left upon compiling?

For Flowcode users to discuss projects, flowcharts, and any other issues related to Flowcode 8.

Moderator: Benj

Post Reply
Kisen
Posts: 73
Joined: Fri Jan 24, 2020 10:38 am
Has thanked: 4 times
Been thanked: 2 times

STM32 how much memory and RAM left upon compiling?

Post by Kisen »

Hi,

Is there a way to see how much RAM and memory space has been used up when compiling on the STM32 ICs?

User avatar
LeighM
Matrix Staff
Posts: 2178
Joined: Tue Jan 17, 2012 10:07 am
Has thanked: 481 times
Been thanked: 699 times

Re: STM32 how much memory and RAM left upon compiling?

Post by LeighM »

Hi
The compiler output window has the information, for example ...

Code: Select all

   text	   data	    bss	    dec	    hex	filename
  14740	      4	   1704	  16448	   4040	..\NUCLEO_F030R8.elf
  
text = code size
data + bss = ram size

Post Reply