Advertisement
Guest User

Untitled

a guest
Aug 19th, 2012
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.44 KB | None | 0 0
  1. Build started 19.8.2012 at 18:28:54
  2. avr-gcc -mmcu=atmega32 -Wall -gdwarf-2 -std=gnu99 -DF_CPU=20000000UL -Os -funsigned-char -funsigned-bitfields -fpack-struct -fshort-enums -D BAUD=11520 -D START_DELAY_SEC=5 -D BOOTSTART=0x7E00 -MD -MP -MT bootloader.o -MF dep/bootloader.o.d -c ../boo
  3. tloader.c
  4.  
  5. ../bootloader.c: In function 'main':
  6. ../bootloader.c:143: warning: function declared 'noreturn' has a 'return' statement
  7. ../bootloader.c: At top level:
  8. ../bootloader.c:50: warning: 'uart_getchar' defined but not used
  9. avr-gcc -mmcu=atmega32 -mmcu=atmega32 -Wall -gdwarf-2 -std=gnu99 -DF_CPU=20000000UL -Os -funsigned-char -funsigned-bitfields -fpack-struct -fshort-enums -D BAUD=11520 -D START_DELAY_SEC=5 -D BOOTSTART=0x7E00 -MD -MP -MT appspace.o -MF dep/appspace.o.d
  10. -x assembler-with-cpp -Wa,-gdwarf2 -c ../appspace.s
  11.  
  12. avr-gcc -mmcu=atmega32 -Wl,-Map=bootloader.map bootloader.o appspace.o -o bootloader.elf
  13. avr-objcopy -O ihex -R .eeprom -R .fuse -R .lock -R .signature bootloader.elf bootloader.hex
  14. avr-objcopy -j .eeprom --set-section-flags=.eeprom="alloc,load" --change-section-lma .eeprom=0 --no-change-warnings -O ihex bootloader.elf bootloader.eep || exit 0
  15. avr-objdump -h -S bootloader.elf > bootloader.lss
  16.  
  17. AVR Memory Usage
  18. ----------------
  19. Device: atmega32
  20.  
  21. Program: 556 bytes (1.7% Full)
  22. (.text + .data + .bootloader)
  23.  
  24. Data: 174 bytes (8.5% Full)
  25. (.data + .bss + .noinit)
  26.  
  27.  
  28. Build succeeded with 2 Warnings...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement