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_CFG_H_ 8 #define BSP_CFG_H_ 9 #include "bsp_clock_cfg.h" 10 #include "bsp_mcu_family_cfg.h" 11 12 #ifndef BSP_CFG_RTOS 13 #define BSP_CFG_RTOS (0) 14 #endif 15 16 #define BSP_CFG_MCU_VCC_MV (3300) 17 #define BSP_CFG_S_STACK_MAIN_BYTES (0x1000) 18 #define BSP_CFG_STACK_MAIN_BYTES (0x1000) 19 #define BSP_CFG_HEAP_BYTES (0x4000) 20 #define BSP_CFG_PARAM_CHECKING_ENABLE (0) 21 #define BSP_CFG_ASSERT (0) 22 #define BSP_CFG_ERROR_LOG (0) 23 24 #define BSP_CFG_PFS_PROTECT ((1)) 25 26 #define BSP_CFG_C_RUNTIME_INIT ((1)) 27 #endif /* BSP_CFG_H_ */ 28