You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1.0 KiB
31 lines
1.0 KiB
/**
|
|
* \file
|
|
* \brief Configuration header file for Kinetis Tools (or ARM in general)
|
|
* Copyright (c) 2020, Erich Styger
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*
|
|
* This header file is used to configure settings of the ARM Tools module.
|
|
*/
|
|
|
|
#ifndef __McuArmTools_CONFIG_H
|
|
#define __McuArmTools_CONFIG_H
|
|
|
|
#if !defined(McuArmTools_CONFIG_PARSE_COMMAND_ENABLED)
|
|
#define McuArmTools_CONFIG_PARSE_COMMAND_ENABLED (1)
|
|
/*!< 1: shell support enabled, 0: otherwise */
|
|
#endif
|
|
|
|
#if McuLib_CONFIG_NXP_SDK_2_0_USED
|
|
/* will include system header file in the implementation file */
|
|
#elif McuLib_CONFIG_SDK_VERSION_USED==McuLib_CONFIG_SDK_KINETIS_1_3
|
|
/* will include system header file in the implementation file */
|
|
#elif McuLib_CONFIG_CPU_IS_ARM_CORTEX_M
|
|
/* include here the low level CMSIS header files, e.g. with */
|
|
#if McuLib_CONFIG_CPU_IS_STM32
|
|
#include "stm32f3xx_hal.h" /* header file for STM32F303K8 */
|
|
#elif McuLib_CONFIG_SDK_VERSION_USED==McuLib_CONFIG_SDK_NORDIC_NRF5
|
|
#include "nrf.h"
|
|
#endif
|
|
#endif
|
|
|
|
#endif /* __McuArmTools_CONFIG_H */
|
|
|