1 /* 2 * Copyright (c) 2020-2022, CQ 100ask Development Team 3 * 4 * Change Logs: 5 * Date Author Notes 6 * 2022-05-29 Alen first version 7 */ 8 9 #ifndef __DRV_CONFIG_H__ 10 #define __DRV_CONFIG_H__ 11 12 #include <board.h> 13 #include <rtthread.h> 14 15 #ifdef __cplusplus 16 extern "C" { 17 #endif 18 19 #if defined(SOC_SERIES_MM32F3277) 20 #include "mm32f3277g8p/dma_config.h" 21 #include "mm32f3277g8p/uart_config.h" 22 #endif 23 24 #ifdef __cplusplus 25 } 26 #endif 27 28 #endif 29