Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Aug 19th, 2012  |  syntax: None  |  size: 1.35 KB  |  hits: 5  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Microsoft Windows [Wersja 6.1.7600]
  2. Copyright (c) 2009 Microsoft Corporation. Wszelkie prawa zastrzeżone.
  3.  
  4.  
  5. C:\Users> cd C:\WinAVR-20100110
  6.  
  7.  
  8. C:\WinAVR-20100110>make -C "C:\c"
  9. make: Entering directory `C:/c'
  10. avr-gcc -Wall -Os -I. -mmcu=atmega32 -D START_DELAY_SEC=5 -D UC=atmega32 -D BAUD
  11. =115200 -D F_CPU=20000000 -D BOOTSTART=0x7E00 -fno-inline-small-functions -fno-s
  12. plit-wide-types -fno-tree-scev-cprop -ffunction-sections -c bootloader.c -o boot
  13. loader.o
  14. bootloader.c:50: warning: 'uart_getchar' defined but not used
  15. avr-gcc -Wall -Os -I. -mmcu=atmega32 -D START_DELAY_SEC=5 -D UC=atmega32 -D BAUD
  16. =115200 -D F_CPU=20000000 -D BOOTSTART=0x7E00 -fno-inline-small-functions -fno-s
  17. plit-wide-types -fno-tree-scev-cprop -ffunction-sections -x assembler-with-cpp -
  18. a -c appspace.s -o appspace.o
  19. avr-gcc -Wall -Os -I. -mmcu=atmega32 -D START_DELAY_SEC=5 -D UC=atmega32 -D BAUD
  20. =115200 -D F_CPU=20000000 -D BOOTSTART=0x7E00 -fno-inline-small-functions -fno-s
  21. plit-wide-types -fno-tree-scev-cprop -ffunction-sections -Wl,-section-start=.tex
  22. t=0x7E00 -nostartfiles   -o bootloader.elf bootloader.o appspace.o
  23. avr-objcopy -j .text -j .data -O ihex bootloader.elf bootloader.hex
  24. avr-size bootloader.elf
  25.    text    data     bss     dec     hex filename
  26.     340      50     128     518     206 bootloader.elf
  27. make: Leaving directory `C:/c'
  28.  
  29. C:\WinAVR-20100110>