31 lines
463 B
C
31 lines
463 B
C
/*
|
|
* Copyright (c) 2006-2022, RT-Thread Development Team
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Change Logs:
|
|
* Date Author Notes
|
|
* 2022-03-02 FMD-AE first version
|
|
*/
|
|
|
|
#ifndef __DRV_CONFIG_H__
|
|
#define __DRV_CONFIG_H__
|
|
|
|
#include <board.h>
|
|
#include <rtthread.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#if defined(SOC_SERIES_FT32F0)
|
|
#include "dma_config.h"
|
|
#include "uart_config.h"
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|