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 
18 #define BSP_CFG_PARAM_CHECKING_ENABLE (0)
19 #define BSP_CFG_ASSERT (0)
20 #define BSP_CFG_ERROR_LOG (0)
21 
22 #define BSP_CFG_PORT_PROTECT (1)
23 
24 #define BSP_CFG_SOFT_RESET_SUPPORTED (0)
25 #define BSP_CFG_EARLY_INIT (0)
26 
27 #define BSP_CFG_MULTIPLEX_INTERRUPT_SUPPORTED (0)
28 #if BSP_CFG_MULTIPLEX_INTERRUPT_SUPPORTED
29  #define BSP_CFG_MULTIPLEX_INTERRUPT_ENABLE         BSP_INTERRUPT_ENABLE
30  #define BSP_CFG_MULTIPLEX_INTERRUPT_DISABLE        BSP_INTERRUPT_DISABLE
31 #else
32  #define BSP_CFG_MULTIPLEX_INTERRUPT_ENABLE
33  #define BSP_CFG_MULTIPLEX_INTERRUPT_DISABLE
34 #endif
35 #endif /* BSP_CFG_H_ */
36