From d39abee37de5557f11f3ba9a2c41c8b5d6f5d615 Mon Sep 17 00:00:00 2001 From: 0xPIT Date: Thu, 16 May 2013 21:48:44 +0200 Subject: [PATCH] fix command line parameter for avr-size --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f0e7f41..3426db6 100644 --- a/Makefile +++ b/Makefile @@ -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.