levizhxl 1d6347796d
Hc32 pr (#6003)
* HC32F460 supported

Co-authored-by: JamieTx <yangjp24@126.com>
Co-authored-by: Jamie <48308473+JamieTx@users.noreply.github.com>
2022-05-31 11:53:56 +08:00

42 lines
930 B
C

/*
* Copyright (c) 2006-2022, RT-Thread Development Team
* Copyright (c) 2022, Xiaohua Semiconductor Co., Ltd.
*
* SPDX-License-Identifier: Apache-2.0
*
* Change Logs:
* Date Author Notes
* 2022-04-28 CDT first version
*/
#ifndef __DRV_DMA_H__
#define __DRV_DMA_H__
/*******************************************************************************
* Include files
******************************************************************************/
#include <rtthread.h>
#include "drv_irq.h"
#ifdef __cplusplus
extern "C" {
#endif
struct dma_config
{
CM_DMA_TypeDef *Instance;
rt_uint32_t channel;
rt_uint32_t clock;
rt_uint32_t trigger_select;
en_event_src_t trigger_event;
struct hc32_irq_config irq_config;
func_ptr_t irq_callback;
};
#ifdef __cplusplus
}
#endif
#endif /* __DRV_DMA_H__ */