4

I am using avr studio 5. My controller is AT32UC3A0512. I want to know my final program size which will be occupied on flash before burning the program. Please let me know how to know this?

emacs drives me nuts
  • 2,785
  • 13
  • 23
Surjya Narayana Padhi
  • 7,741
  • 25
  • 81
  • 130

1 Answers1

2

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

avr32-size.exe -Project.elf

The latest Studio build should do this by default when rebuilding the complete Project. This will show up in the output tab.(Open with View->Output or Alt+2

user1176976
  • 312
  • 2
  • 10