/* * Copyright (c) 2020 - 2024 Renesas Electronics Corporation and/or its * affiliates * * SPDX-License-Identifier: BSD-3-Clause */ #ifndef R_SPI_CFG_H_ #define R_SPI_CFG_H_ #ifdef __cplusplus extern "C" { #endif #define SPI_CFG_PARAM_CHECKING_ENABLE (1) #if CONFIG_SPI_RA_DTC #define SPI_DMA_SUPPORT_ENABLE (1) #else #define SPI_DMA_SUPPORT_ENABLE (0) #endif #define SPI_TRANSMIT_FROM_RXI_ISR (0) #ifdef __cplusplus } #endif #endif /* R_SPI_CFG_H_ */