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 R_IIC_MASTER_CFG_H_ 8 #define R_IIC_MASTER_CFG_H_ 9 #ifdef __cplusplus 10 extern "C" { 11 #endif 12 13 #define IIC_MASTER_CFG_PARAM_CHECKING_ENABLE (BSP_CFG_PARAM_CHECKING_ENABLE) 14 #define IIC_MASTER_CFG_DTC_ENABLE (0) 15 #define IIC_MASTER_CFG_ADDR_MODE_10_BIT_ENABLE (1) 16 17 #ifdef __cplusplus 18 } 19 #endif 20 #endif /* R_IIC_MASTER_CFG_H_ */ 21