46 lines
1.6 KiB
C
46 lines
1.6 KiB
C
/**
|
|
* \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
|
|
|
|
#ifndef McuArmTools_CONFIG_STACK_CHECK_PATTERN
|
|
#define McuArmTools_CONFIG_STACK_CHECK_PATTERN (0xdeadbeef)
|
|
/*!< Byte pattern on stack, to mark it is 'unused' */
|
|
#endif
|
|
|
|
/* The two symbols below shall be set by the linker script file to mark top and bottom of stack. Note that the two addresses need to be 32bit aligned! */
|
|
#ifndef McuArmTools_CONFIG_LINKER_SYMBOL_STACK_TOP
|
|
#define McuArmTools_CONFIG_LINKER_SYMBOL_STACK_TOP _vStackTop
|
|
#endif
|
|
|
|
#ifndef McuArmTools_CONFIG_LINKER_SYMBOL_STACK_BASE
|
|
#define McuArmTools_CONFIG_LINKER_SYMBOL_STACK_BASE _vStackBase
|
|
#endif
|
|
|
|
#endif /* __McuArmTools_CONFIG_H */
|