• 大小: 1KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-01-06
  • 语言: 其他
  • 标签: stm32  adc  8通道  

资源简介

上传了8通道的adc采样分享给大家,下了不亏上传了8通道的adc采样分享给大家,下了不亏

资源截图

代码片段和文件信息

#include “adc.h“
#include “Common.h“

void adc_Init(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
ADC_InitTypeDef ADC_InitStructure;

RCC_APB2PeriphClockCmd(RCC_APB2Periph_ADC1 ENABLE);
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA ENABLE);
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOC ENABLE);
/* ADC Clock 72/6=12M */
RCC_ADCCLKConfig(RCC_PCLK2_Div6);  

ADC_DeInit(ADC1);
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AIN;
/* Temp1 */
GPIO_InitStructure.GPIO_Pin = PIN_ADC_TEMP_1;
GPIO_Init(PORT_ADC_TEMP_1 &GPIO_InitStructure);
/* Temp2 */ 
GPIO_InitStructure.GPIO_Pin = PIN_ADC_TEMP_2;
GPIO_Init(PORT_ADC_TEMP_2 &GPIO_InitStructure);
/* Temp3 */ 
GPIO_InitStructure.GPIO_Pin = PIN_ADC_TEMP_3;
GPIO_Init(PORT_ADC_TEMP_3 &GPIO_InitStructure);
/* Temp4

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       3516  2018-05-28 13:40  adc\adc.c

     文件        984  2018-06-11 17:07  adc\adc.h

     目录          0  2018-07-26 18:19  adc

----------- ---------  ---------- -----  ----

                 4500                    3


评论

共有 条评论