mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-24 22:13:52 +01:00
Instead of manually re-creating the files from ASF, just use the vendor provided dispatch headers and ease the maintainance burden.
12 lines
254 B
Makefile
12 lines
254 B
Makefile
CPU_ARCH = cortex-m23
|
|
|
|
ifneq (,$(filter saml10%,$(CPU_MODEL)))
|
|
CFLAGS += -DCPU_SAML10
|
|
endif
|
|
ifneq (,$(filter saml11%,$(CPU_MODEL)))
|
|
CFLAGS += -DCPU_SAML11
|
|
endif
|
|
|
|
include $(RIOTCPU)/sam0_common/Makefile.include
|
|
include $(RIOTMAKE)/arch/cortexm.inc.mk
|