mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
8afc8dfdc3
cpu/kinetis_common/wdog.c: move wdog disable code to initial wdog driver cpu/kinetis_common/wdog.c: add COP WDOG cpu/kinetis_common/include/wdog.h: add configuration example cpu/kinetis_common: add fault handlers cpu/kinetis_common: add .ramcode and ISR vector relocation to startup.c
12 lines
399 B
Makefile
12 lines
399 B
Makefile
# include module specific includes
|
|
export INCLUDES += -I$(RIOTCPU)/kinetis_common/include
|
|
|
|
# Add search path for linker scripts
|
|
export LINKFLAGS += -L$(RIOTCPU)/kinetis_common/ldscripts
|
|
|
|
# add the CPU specific startup code for the linker
|
|
export UNDEF += $(BINDIR)kinetis_common/startup.o
|
|
|
|
# add the CPU specific fault handlers for the linker
|
|
export UNDEF += $(BINDIR)kinetis_common/fault_handlers.o
|