STM32 ADC输入采集电压Verf:Vref就是指输入的模拟电压的最大值, 用于比较输入电压, ADC的输入的有效范围:0-Vref, 如果是10bit ADC,Vref=5v, 2^10(1024):5v, 那么ADC的分辨率为5/1024=0.00488v
#include "stm32f10x.h" // Device header#include "stdio.h"#include "delay.h"/*********************串口调试输出**********************/void led()//led PE5初始化{ RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOE,ENABLE);