How to find out the final program size after compiling on avr32

I am using avr studio 5. My controller is AT32UC3A0512. I want to know my final program size, which will be included during the flash before recording the program. Please let me know how to know this.

+4
source share
1 answer

Hi, the command for this is avr32-size.exe [option (s)] [file (s)]. Use it like this: Go to the output directory

avr32-size.exe -Project.elf

The latest version of Studio should do this by default when rebuilding a complete project. This will be displayed on the output tab. (Open with View-> Output or Alt + 2

+2
source

Source: https://habr.com/ru/post/1391747/


All Articles