From 78bbfe0447a96c02bb72aca942d6f1cc0414608c Mon Sep 17 00:00:00 2001 From: IW3IJQ Date: Wed, 22 Jul 2015 14:01:38 +0200 Subject: [PATCH] Fix avr-size "Device: Unknown" message. Now avr-size show the target mcu and percent of space used. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0c8d0c1..709f106 100644 --- a/Makefile +++ b/Makefile @@ -167,7 +167,7 @@ REMOVE = rm -f COPY = cp HEXSIZE = $(SIZE) --target=$(FORMAT) $(TARGET).hex -ELFSIZE = $(SIZE) -C $(TARGET).elf +ELFSIZE = $(SIZE) --mcu=$(MCU) -C $(TARGET).elf