mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
95e3d202f2
NXP calls the family KW2xD in their material. http://www.nxp.com/products/microcontrollers-and-processors/arm-processors/kinetis-cortex-m-mcus/w-series-wireless-m0-plus-m4:KINETIS_W_SERIES
19 lines
638 B
Makefile
19 lines
638 B
Makefile
# define the CPU architecture for the kw2xd
|
|
export CPU_ARCH = cortex-m4
|
|
|
|
# tell the build system that the CPU depends on the Kinetis common files
|
|
export USEMODULE += kinetis_common
|
|
|
|
# define path to kinetis module, which is needed for this CPU
|
|
export KINETIS_COMMON = $(RIOTCPU)/kinetis_common/
|
|
# CPU depends on the kinetis module, so include it
|
|
include $(KINETIS_COMMON)Makefile.include
|
|
|
|
# this CPU implementation is using kinetis common startup
|
|
export COMMON_STARTUP = $(KINETIS_COMMON)
|
|
|
|
# add the CPU specific system calls implementations for the linker
|
|
export UNDEF += $(BINDIR)/cpu/vectors.o
|
|
|
|
include $(RIOTMAKE)/arch/cortexm.inc.mk
|