Skip to content
Snippets Groups Projects
Commit 4e86e122 authored by Vincent Dupont's avatar Vincent Dupont
Browse files

cpu/stm32_common: add info-stm32 make target

parent 51dcf279
No related branches found
No related tags found
No related merge requests found
...@@ -17,6 +17,12 @@ export INCLUDES += -I$(RIOTCPU)/stm32_common/include ...@@ -17,6 +17,12 @@ export INCLUDES += -I$(RIOTCPU)/stm32_common/include
include $(RIOTCPU)/stm32_common/stm32_mem_lengths.mk include $(RIOTCPU)/stm32_common/stm32_mem_lengths.mk
info-stm32:
@$(COLOR_ECHO) "CPU: $(CPU_MODEL)"
@$(COLOR_ECHO) "\tPin count:\t$(STM32_PINCOUNT)"
@$(COLOR_ECHO) "\tROM size:\t$(ROM_LEN)"
@$(COLOR_ECHO) "\tRAM size:\t$(RAM_LEN)"
ifneq (,$(CCMRAM_LEN)) ifneq (,$(CCMRAM_LEN))
LINKFLAGS += $(LINKFLAGPREFIX)--defsym=_ccmram_length=$(CCMRAM_LEN) LINKFLAGS += $(LINKFLAGPREFIX)--defsym=_ccmram_length=$(CCMRAM_LEN)
endif endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment