You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
420 B
12 lines
420 B
# export the CPU family so we can differentiate between them in the code |
|
FAM = $(shell echo $(CPU_FAM) | tr 'a-z-' 'A-Z_') |
|
export CFLAGS += -DCPU_FAM_$(FAM) |
|
|
|
# include common periph module |
|
USEMODULE += periph_common |
|
|
|
# include stm32 common functions and stm32 common periph drivers |
|
USEMODULE += stm32_common stm32_common_periph |
|
|
|
# export the common include directory |
|
export INCLUDES += -I$(RIOTCPU)/stm32_common/include
|
|
|