Fix size so it uses the elf file rather than the hex. Also added the mcu so it shows device memory usage.
This commit is contained in:
parent
409823d061
commit
3a37aa5831
1 changed files with 2 additions and 2 deletions
|
@ -679,8 +679,8 @@ clean:
|
|||
depends: $(DEPS)
|
||||
cat $(DEPS) > $(DEP_FILE)
|
||||
|
||||
size: $(OBJDIR) $(TARGET_HEX)
|
||||
$(SIZE) $(TARGET_HEX)
|
||||
size: $(OBJDIR) $(TARGET_ELF)
|
||||
$(SIZE) -C --mcu=$(MCU) $(TARGET_ELF)
|
||||
|
||||
show_boards:
|
||||
$(PARSE_BOARD_CMD) --boards
|
||||
|
|
Loading…
Reference in a new issue