From b2fd51f7559cdeef17df69e2548df2bb6ee7f174 Mon Sep 17 00:00:00 2001 From: IW3IJQ Date: Wed, 22 Jul 2015 15:59:42 +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 91f4590..d6ab575 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