| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- /*
- * Copyright (c) 2006-2021, RT-Thread Development Team
- *
- * SPDX-License-Identifier: Apache-2.0
- *
- * Change Logs:
- * Date Author Notes
- * 2021-07-29 KyleChan first version
- * 2022-12-7 Vandoul ADD ra4m2
- */
- #ifndef __DRV_CONFIG_H__
- #define __DRV_CONFIG_H__
- #include "board.h"
- #include <rtthread.h>
- #ifdef __cplusplus
- extern "C"
- {
- #endif
- #ifdef SOC_SERIES_R7FA6M5
- #include "ra6m5/uart_config.h"
- #ifdef BSP_USING_ADC
- #include "ra6m5/adc_config.h"
- #endif
- #ifdef BSP_USING_DAC
- #include "ra6m5/dac_config.h"
- #endif
- #ifdef BSP_USING_PWM
- #include "ra6m5/pwm_config.h"
- #endif
- #ifdef BSP_USING_CAN
- #include "ra6m5/can_config.h"
- #endif
- #endif /* SOC_SERIES_R7FA6M5 */
- #if (defined(SOC_SERIES_R7FA6M3)) || (defined(SOC_SERIES_R7FA6M4))
- #include "ra6m4/uart_config.h"
- #ifdef BSP_USING_ADC
- #include "ra6m4/adc_config.h"
- #endif
- #ifdef BSP_USING_DAC
- #include "ra6m4/dac_config.h"
- #endif
- #ifdef BSP_USING_PWM
- #include "ra6m4/pwm_config.h"
- #endif
- #ifdef BSP_USING_CAN
- #include "ra6m4/can_config.h"
- #endif
- #endif /* SOC_SERIES_R7FA6M4 */
- #ifdef SOC_SERIES_R7FA2L1
- #include "ra2l1/uart_config.h"
- #ifdef BSP_USING_ADC
- #include "ra2l1/adc_config.h"
- #endif
- #ifdef BSP_USING_DAC
- #include "ra2l1/dac_config.h"
- #endif
- #ifdef BSP_USING_PWM
- #include "ra2l1/pwm_config.h"
- #endif
- #ifdef BSP_USING_CAN
- #include "ra2l1/can_config.h"
- #endif
- #endif /* SOC_SERIES_R7FA2L1 */
- #ifdef SOC_SERIES_R7FA4M2
- #include "ra4m2/uart_config.h"
- #ifdef BSP_USING_ADC
- #include "ra4m2/adc_config.h"
- #endif
- #ifdef BSP_USING_DAC
- #include "ra4m2/dac_config.h"
- #endif
- #ifdef BSP_USING_PWM
- #include "ra4m2/pwm_config.h"
- #endif
- #ifdef BSP_USING_CAN
- #include "ra4m2/can_config.h"
- #endif
- #endif /* SOC_SERIES_R7FA4M2 */
- #ifdef __cplusplus
- }
- #endif
- #endif /* __DRV_CONFIG_H__ */
|