mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
46 lines
1.0 KiB
C
46 lines
1.0 KiB
C
/*
|
|
* Copyright (C) 2017 Eistec AB
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
/**
|
|
* @ingroup cpu_kinetis
|
|
* @brief CPU specific implementations for the NXP Kinetis L series of
|
|
* Cortex-M MCUs
|
|
* @{
|
|
*
|
|
* @file
|
|
* @brief Implementation specific CPU configuration options
|
|
*
|
|
* @author Joakim Nohlgård <joakim.nohlgard@eistec.se>
|
|
*/
|
|
|
|
#ifndef CPU_CONF_KINETIS_L_H
|
|
#define CPU_CONF_KINETIS_L_H
|
|
|
|
#if (KINETIS_FAMILY == 4)
|
|
#if (KINETIS_SUBFAMILY == 3)
|
|
#if defined(CPU_MODEL_MKL43Z128VLH4) || \
|
|
defined(CPU_MODEL_MKL43Z128VMP4) || \
|
|
defined(CPU_MODEL_MKL43Z256VLH4) || \
|
|
defined(CPU_MODEL_MKL43Z256VMP4)
|
|
#include "vendor/MKL43Z4.h"
|
|
#endif
|
|
#endif /* (KINETIS_SUBFAMILY == y) */
|
|
#endif /* (KINETIS_FAMILY == x) */
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* CPU_CONF_KINETIS_L_H */
|
|
/** @} */
|