1 /*
2 * Copyright (c) 2020 - 2024 Renesas Electronics Corporation and/or its affiliates
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6 
7 #ifndef BSP_MCU_DEVICE_CFG_H_
8 #define BSP_MCU_DEVICE_CFG_H_
9 #define BSP_CFG_STACK_FIQ_BYTES (0x400)
10 #define BSP_CFG_STACK_IRQ_BYTES (0x400)
11 #define BSP_CFG_STACK_ABT_BYTES (0x400)
12 #define BSP_CFG_STACK_UND_BYTES (0x400)
13 #define BSP_CFG_STACK_SYS_BYTES (0x400)
14 #define BSP_CFG_STACK_SVC_BYTES (0x400)
15 #define BSP_CFG_HEAP_BYTES (0x2000)
16 
17 #define BSP_CFG_C_RUNTIME_INIT (1)
18 #define BSP_CFG_USE_TFU_MATHLIB ((1))
19 #endif /* BSP_MCU_DEVICE_CFG_H_ */
20