F4用两个ADC的问题。

2019-07-20 21:18发布

我用一路ADC的时候 采样的值挺准确的 用两个ADC的时候 它们两的值都有点乱动 比如接到GND上的话 显示一会儿是0.5一会儿是0.3之类的。
这是我配置adc.c的代码
        GPIO_InitTypeDef       GPIO_InitStructure;
        ADC_CommonInitTypeDef  ADC_CommonInitStructure;
        ADC_InitTypeDef        ADC_InitStructure;
       
        RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOA, ENABLE);
        RCC_APB2PeriphClockCmd(RCC_APB2Periph_ADC1, ENABLE);
        RCC_APB2PeriphClockCmd(RCC_APB2Periph_ADC2, ENABLE);


       GPIO_InitStructure.GPIO_Pin = GPIO_Pin_5;
       GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AN;
       GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_NOPULL ;
       GPIO_Init(GPIOA, &GPIO_InitStructure);
       
       
        GPIO_InitStructure.GPIO_Pin = GPIO_Pin_1;
        GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AN;
        GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_NOPULL ;
        GPIO_Init(GPIOA, &GPIO_InitStructure);

       
        RCC_APB2PeriphResetCmd(RCC_APB2Periph_ADC1,ENABLE);          
        RCC_APB2PeriphResetCmd(RCC_APB2Periph_ADC1,DISABLE);       

        RCC_APB2PeriphResetCmd(RCC_APB2Periph_ADC2,ENABLE);          
        RCC_APB2PeriphResetCmd(RCC_APB2Periph_ADC2,DISABLE);       
       
  ADC_CommonInitStructure.ADC_Mode = ADC_DualMode_RegSimult_InjecSimult;
  ADC_CommonInitStructure.ADC_TwoSamplingDelay = ADC_TwoSamplingDelay_5Cycles;
  ADC_CommonInitStructure.ADC_DMAAccessMode = ADC_DMAAccessMode_Disabled;
  ADC_CommonInitStructure.ADC_Prescaler = ADC_Prescaler_Div4;
  ADC_CommonInit(&ADC_CommonInitStructure);ˉ
       
  ADC_InitStructure.ADC_Resolution = ADC_Resolution_12b;
  ADC_InitStructure.ADC_ScanConvMode = DISABLE;       
  ADC_InitStructure.ADC_ContinuousConvMode = DISABLE;
  ADC_InitStructure.ADC_ExternalTrigConvEdge = ADC_ExternalTrigConvEdge_None;
  ADC_InitStructure.ADC_DataAlign = ADC_DataAlign_Right;
  ADC_InitStructure.ADC_NbrOfConversion = 1;
  ADC_Init(ADC1, &ADC_InitStructure);
       
  ADC_InitStructure.ADC_Resolution = ADC_Resolution_12b;
  ADC_InitStructure.ADC_ScanConvMode = DISABLE;       
  ADC_InitStructure.ADC_ContinuousConvMode = DISABLE;
  ADC_InitStructure.ADC_ExternalTrigConvEdge = ADC_ExternalTrigConvEdge_None;
  ADC_InitStructure.ADC_DataAlign = ADC_DataAlign_Right;       
  ADC_InitStructure.ADC_NbrOfConversion = 1;
  ADC_Init(ADC2, &ADC_InitStructure);

  ADC_Cmd(ADC1, ENABLE);
  ADC_Cmd(ADC2, ENABLE);


下面的是我主程序里面
                adcx=Get_Adc_Average(ADC_Channel_5,20);
               
                adcx1=Get_Adc2_Average(ADC_Channel_1,20);
               
                LCD_ShowxNum(134,180,adcx,4,16,0);   
                temp=(float)adcx*(3.3/4096);      
                temp1=temp+temp+temp+temp;
                adcx=temp1;               
                temp2=temp1;
               
                temp3=(float)adcx1*(3.3/4096);
                adcx1=temp3;
               
                LCD_ShowxNum(134,200,adcx,2,16,0);   

                temp1-=adcx;                           
                temp1*=1000;                          
               
                adcx=temp1;
                LCD_ShowxNum(157,200,adcx,3,16,0X80);
               
                temp-=adcx;                           
                temp*=1000;  
                LCD_ShowxNum(134,230,adcx1,1,16,0);   

               
                temp3-=adcx1;
                temp3*=1000;
                LCD_ShowxNum(150,230,temp3,3,16,0X80);
                LED0=!LED0;
                delay_ms(250);       


谁能快点帮我看一下
实验现象就是比如说AD输入口接到GND上 LCD上显示出来的那个值一直在跳  一会儿0.1一会儿0.5一会儿0.2那种的。
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。