1 /* 2 * Copyright (c) 2020 - 2024 Renesas Electronics Corporation and/or its affiliates 3 * Copyright (c) 2024 TOKITA Hiroshi 4 * 5 * SPDX-License-Identifier: BSD-3-Clause 6 */ 7 8 #ifndef R_SCI_UART_CFG_H_ 9 #define R_SCI_UART_CFG_H_ 10 #ifdef __cplusplus 11 extern "C" { 12 #endif 13 14 #define SCI_UART_CFG_PARAM_CHECKING_ENABLE (BSP_CFG_PARAM_CHECKING_ENABLE) 15 #define SCI_UART_CFG_FIFO_SUPPORT (CONFIG_UART_RA_SCI_UART_FIFO_ENABLE) 16 #define SCI_UART_CFG_DTC_SUPPORTED (CONFIG_USE_RA_FSP_DTC) 17 #define SCI_UART_CFG_FLOW_CONTROL_SUPPORT (0) 18 #define SCI_UART_CFG_RS485_SUPPORT (0) 19 20 #ifdef __cplusplus 21 } 22 #endif 23 #endif /* R_SCI_UART_CFG_H_ */ 24