前言
本文将使用指导演示如何使用 ADCP
RA000。
上手
需要先查看芯片手册,如下图,可以看到P000的ADC通道是AN000(ADC0)和AN100(ADC1)。
使用RA Smart Configurator配置ADC,先在stack中创建一个ADC。
将P000修改为复用ADC
使能ADC0中的P000
在RT-Thread Setting中配置使用ADC0
写代码
编写代码读取ADC0 P000采集到的ADC数据。
/*
Copyright (c) 2006-2021, RT-Thread Development Team
SPDX-License-Identifier: Apache-2.0
Change Logs:
Date Author Notes
2022-06-19 Administrator the first version
*/
#include "app_pluse_sensor.h"
#include <rtdevice.h>
#include <rtthread.h>
#include "hal_data.h"
#define ADC_DEV_NAME ("adc0") /* ADC 设备名称 */
#define ADC_DEV_CHANNEL (0U) /* ADC 通道 */
#define REFER_VOLTAGE (330U) /* 参考电压 3.3V,数据精度乘以100保留2位小数*/
#define CONVERT_BITS (1U << 12U) /* 转换位数为12位 */
static int adc_vol_sample(int argc, char *argv[])
{
rt_adc_device_t adc_dev;
rt_uint32_t value, vol;
rt_err_t ret = RT_EOK;
/* 查找设备 */
adc_dev = (rt_adc_device_t)rt_device_find(ADC_DEV_NAME);
if (adc_dev == RT_NULL)
{
rt_kprintf("adc sample run failed! can't find %s device!\n", ADC_DEV_NAME);
return RT_ERROR;
}
/* 使能设备 */
ret = rt_adc_enable(adc_dev, ADC_DEV_CHANNEL);
/* 读取采样值 */
value = rt_adc_read(adc_dev, ADC_DEV_CHANNEL);
rt_kprintf("the value is :%d \n", value);
/* 转换为对应电压值 */
vol = value * REFER_VOLTAGE / CONVERT_BITS;
rt_kprintf("the voltage is :%d.%02d \n", vol / 100, vol % 100);
/* 关闭通道 */
ret = rt_adc_disable(adc_dev, ADC_DEV_CHANNEL);
return ret;
}
/* 导出到 msh 命令列表中 */
MSH_CMD_EXPORT(adc_vol_sample, adc voltage convert sample);
效果展示
结果如下:
后记
发现采集之前的方式都需要先启用ADC才可以修改,是因为没有ADC转换模式为连续,默认是次次,为连续之后就可以持续模式了,需要每一次采集之前设置都可以先使能ADC,修改方式见下图:
原作者:hehung
更多回帖