mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
13 lines
538 B
Makefile
13 lines
538 B
Makefile
# Find the header file that should exist if the CPU is supported. Only headers
|
|
# for supported boards are included, but to support another CPU, it should be
|
|
# as easy as adding the header file only.
|
|
EFM32_HEADER = $(wildcard $(RIOTCPU)/efm32/families/efr32mg1b/include/vendor/$(CPU_MODEL).h)
|
|
|
|
# Names of librail related files
|
|
EFM32_LIBRAIL_BLOB_NAME = efr32xg1
|
|
EFM32_LIBRAIL_HEADER_NAME = efr32xg1x
|
|
EFM32_LIBRAIL_PA_HEADER_NAME = efr32xg1x
|
|
|
|
# include vendor device headers
|
|
INCLUDES += -I$(RIOTCPU)/efm32/families/efr32mg1b/include/vendor
|