mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
2d53178cc5
https://www.nxp.com/products/processors-and-microcontrollers/arm-based-processors-and-mcus/kinetis-cortex-m-mcus/w-serieswireless-conn.m0-plus-m4/freedom-development-kit-for-kinetis-kw41z-31z-21z-mcus:FRDM-KW41Z
14 lines
473 B
Makefile
14 lines
473 B
Makefile
# define the cpu used by the board
|
|
export CPU = kinetis
|
|
export CPU_MODEL = mkw41z512vht4
|
|
|
|
# OpenOCD v0.10.0-dev (current development version) or later is required for
|
|
# flashing KW41Z devices
|
|
# See http://openocd.zylin.com/#/c/4104/ for the upstreaming process
|
|
export USE_OLD_OPENOCD ?= 0
|
|
# This board comes with OpenSDA configured for JLink compatibility
|
|
export DEBUG_ADAPTER ?= jlink
|
|
|
|
# Include default FRDM board config
|
|
include $(RIOTBOARD)/common/frdm/Makefile.include
|