2015-05-23 09:38:41 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2015 Freie Universität Berlin
|
|
|
|
* Copyright (C) 2015 PHYTEC Messtechnik GmbH
|
|
|
|
*
|
|
|
|
* This file is subject to the terms and conditions of the GNU Lesser General
|
|
|
|
* Public License v2.1. See the file LICENSE in the top level directory for more
|
|
|
|
* details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2017-07-20 18:07:29 +02:00
|
|
|
* @defgroup cpu_k64f NXP Kinetis K64F
|
2015-05-23 09:38:41 +02:00
|
|
|
* @ingroup cpu
|
2017-07-20 18:07:29 +02:00
|
|
|
* @brief CPU specific implementations for the NXP Kinetis K64F
|
|
|
|
* Cortex-M4 MCU
|
2015-05-23 09:38:41 +02:00
|
|
|
* @{
|
|
|
|
*
|
|
|
|
* @file
|
|
|
|
* @brief Implementation specific CPU configuration options
|
|
|
|
*
|
2017-01-19 21:45:23 +01:00
|
|
|
* @author Hauke Petersen <hauke.petersen@fu-berlin.de>
|
2015-05-23 09:38:41 +02:00
|
|
|
* @author Johann Fischer <j.fischer@phytec.de>
|
|
|
|
*/
|
|
|
|
|
2016-06-07 16:29:37 +02:00
|
|
|
#ifndef CPU_CONF_H
|
|
|
|
#define CPU_CONF_H
|
2015-05-23 09:38:41 +02:00
|
|
|
|
|
|
|
#ifdef CPU_MODEL_MK64FN1M0VLL12
|
2017-03-06 16:28:11 +01:00
|
|
|
#include "vendor/MK64F12.h"
|
2015-05-23 09:38:41 +02:00
|
|
|
#else
|
|
|
|
#error "undefined CPU_MODEL"
|
|
|
|
#endif
|
|
|
|
|
2017-07-22 13:30:25 +02:00
|
|
|
#include "cpu_conf_kinetis.h"
|
|
|
|
|
2015-05-23 09:38:41 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2016-06-07 16:29:37 +02:00
|
|
|
#endif /* CPU_CONF_H */
|
2015-05-23 09:38:41 +02:00
|
|
|
/** @} */
|