2022-05-06 09:28:21 +08:00
|
|
|
/*
|
2022-05-31 11:53:56 +08:00
|
|
|
* Copyright (c) 2006-2022, RT-Thread Development Team
|
|
|
|
* Copyright (c) 2022, Xiaohua Semiconductor Co., Ltd.
|
2022-05-06 09:28:21 +08:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*
|
|
|
|
* Change Logs:
|
|
|
|
* Date Author Notes
|
|
|
|
* 2022-04-28 CDT first version
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef __DRV_ADC_H__
|
|
|
|
#define __DRV_ADC_H__
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
* Include files
|
|
|
|
******************************************************************************/
|
|
|
|
#include <rtthread.h>
|
|
|
|
#include "rtdevice.h"
|
|
|
|
|
|
|
|
#include "hc32_ll.h"
|
|
|
|
|
|
|
|
/* C binding of definitions if building with C++ compiler */
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
* Global type definitions ('typedef')
|
|
|
|
******************************************************************************/
|
2022-05-15 20:57:35 +08:00
|
|
|
struct adc_dev_init_params
|
2022-05-06 09:28:21 +08:00
|
|
|
{
|
|
|
|
char name[8];
|
|
|
|
uint16_t resolution; /*!< Specifies the ADC resolution.
|
|
|
|
This parameter can be a value of @ref ADC_Resolution */
|
|
|
|
uint16_t data_align; /*!< Specifies ADC data alignment.
|
|
|
|
This parameter can be a value of @ref ADC_Data_Align */
|
|
|
|
rt_bool_t hard_trig_enable;
|
|
|
|
|
|
|
|
uint32_t hard_trig_src; /*a value of @ref ADC_Hard_Trigger_Sel */
|
|
|
|
rt_bool_t internal_trig0_comtrg0_enable;
|
|
|
|
rt_bool_t internal_trig0_comtrg1_enable;
|
|
|
|
en_event_src_t internal_trig0_sel; /*@ref en_event_src_t in details */
|
|
|
|
rt_bool_t internal_trig1_comtrg0_enable;
|
|
|
|
rt_bool_t internal_trig1_comtrg1_enable;
|
|
|
|
en_event_src_t internal_trig1_sel; /*@ref en_event_src_t in details */
|
|
|
|
|
|
|
|
rt_bool_t continue_conv_mode_enable;
|
|
|
|
rt_bool_t data_reg_auto_clear;
|
|
|
|
uint32_t eoc_poll_time_max;
|
|
|
|
};
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
* Global pre-processor symbols/macros ('#define')
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
* Global variable definitions ('extern')
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
* Global function prototypes (definition in C source)
|
|
|
|
******************************************************************************/
|
|
|
|
int rt_hw_uart_init(void);
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* __DRV_USART_H__ */
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
* EOF (not truncated)
|
|
|
|
******************************************************************************/
|