1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/cpu/samd21/Makefile.include

32 lines
785 B
Makefile
Raw Normal View History

2020-10-02 20:06:43 +02:00
ifneq (,$(filter samd10%,$(CPU_MODEL)))
CFLAGS += -DCPU_SAMD10
endif
2020-06-17 16:38:52 +02:00
ifneq (,$(filter samd20%b,$(CPU_MODEL)))
CFLAGS += -DCPU_SAMD20B
else ifneq (,$(filter samd20%,$(CPU_MODEL)))
CFLAGS += -DCPU_SAMD20
endif
ifneq (,$(filter samd21%a,$(CPU_MODEL)))
CFLAGS += -DCPU_SAMD21A
endif
ifneq (,$(filter samd21%b,$(CPU_MODEL)))
CFLAGS += -DCPU_SAMD21B
endif
ifneq (,$(filter samd21%c,$(CPU_MODEL)))
CFLAGS += -DCPU_SAMD21C
endif
ifneq (,$(filter samd21%d,$(CPU_MODEL)))
CFLAGS += -DCPU_SAMD21D
endif
ifneq (,$(filter samr21%,$(CPU_MODEL)))
CFLAGS += -DCPU_SAMR21
endif
CFLAGS += -DCPU_COMMON_SAMD21
include $(RIOTCPU)/sam0_common/Makefile.include
include $(RIOTMAKE)/arch/cortexm.inc.mk
# The Black Magic Probe has tested to work fine on SAMD21
PROGRAMMERS_SUPPORTED += bmp