rt-thread/bsp/renesas/libraries/HAL_Drivers/config/ra6m4/adc_config.h

43 lines
707 B
C
Raw Normal View History

2021-10-27 11:28:55 +08:00
/*
* Copyright (c) 2006-2024, RT-Thread Development Team
2021-10-27 11:28:55 +08:00
*
* SPDX-License-Identifier: Apache-2.0
*
* Change Logs:
* Date Author Notes
* 2021-08-19 Mr.Tiger first version
*/
#ifndef __ADC_CONFIG_H__
#define __ADC_CONFIG_H__
#include <rtthread.h>
#include <rtdevice.h>
#include "hal_data.h"
#ifdef __cplusplus
extern "C" {
#endif
#if defined(BSP_USING_ADC0) || defined(BSP_USING_ADC1)
struct rt_adc_dev
2021-10-27 11:28:55 +08:00
{
struct rt_adc_ops ops;
struct rt_adc_device adc_device;
2021-10-27 11:28:55 +08:00
};
struct ra_adc_map
2021-10-27 11:28:55 +08:00
{
const char *device_name;
const adc_cfg_t *g_cfg;
const adc_ctrl_t *g_ctrl;
const adc_channel_cfg_t *g_channel_cfg;
2021-10-27 11:28:55 +08:00
};
#endif
#endif
#ifdef __cplusplus
}
#endif