Merge pull request #229 from 0xPIT/patch-1

fix command line parameter for avr-size
This commit is contained in:
Sonny Jeon 2013-08-19 08:18:43 -07:00
commit b2b5352e82

View File

@ -84,7 +84,7 @@ main.elf: $(OBJECTS)
grbl.hex: main.elf
rm -f grbl.hex
avr-objcopy -j .text -j .data -O ihex main.elf grbl.hex
avr-size -C --mcu=$(DEVICE) main.elf
avr-size --format=berkeley --mcu=$(DEVICE) main.elf
# If you have an EEPROM section, you must also create a hex file for the
# EEPROM and add it to the "flash" target.