求问,STM32L151RDT6多通道采用的是ADC+DMA方式,但是驱动不起来是什么原因?

2019-07-14 18:17发布

以下为具体程序代码,求大神解答
  1. void AD_Configuration(void)
  2. {
  3.          DMA_InitTypeDef DMA_InitStructure;
  4.          GPIO_InitTypeDef GPIO_InitStructure;
  5.          ADC_InitTypeDef ADC_InitStructure;
  6.          
  7.          /*Enable DMA1 Clock*/
  8.          RCC_AHBPeriphClockCmd(RCC_AHBPeriph_DMA1, ENABLE);

  9.          /*DMA1 Channel1 Configuration*/
  10.          DMA_DeInit(DMA1_Channel1);
  11.          DMA_InitStructure.DMA_PeripheralBaseAddr = ADC1_DR_ADDRESS;
  12.          DMA_InitStructure.DMA_MemoryBaseAddr = (uint32_t)ADC_ConvertedValue;
  13.          DMA_InitStructure.DMA_DIR = DMA_DIR_PeripheralSRC;
  14.          DMA_InitStructure.DMA_BufferSize = 2;
  15.          DMA_InitStructure.DMA_PeripheralInc = DMA_PeripheralInc_Disable;
  16.          DMA_InitStructure.DMA_MemoryInc = DMA_MemoryInc_Enable;
  17.          DMA_InitStructure.DMA_PeripheralDataSize = DMA_PeripheralDataSize_HalfWord;
  18.          DMA_InitStructure.DMA_MemoryDataSize = DMA_MemoryDataSize_HalfWord;
  19.          DMA_InitStructure.DMA_Mode = DMA_Mode_Circular;
  20.          DMA_InitStructure.DMA_Priority = DMA_Priority_High;
  21.          DMA_InitStructure.DMA_M2M = DMA_M2M_Disable;
  22.          DMA_Init(DMA1_Channel1, &DMA_InitStructure);

  23.          /*ENABLE DMA1 CHANNEL1*/
  24.          DMA_Cmd(DMA1_Channel1, ENABLE);

  25.          /*------------ADC1 configuration with DMA enabled---------*/
  26.          /*Enable the HSI oscillator*/
  27.          RCC_HSICmd(ENABLE);

  28.          /*Enable GPIOA Clock*/
  29.          RCC_AHBPeriphClockCmd(RCC_AHBPeriph_GPIOA, ENABLE);

  30.          GPIO_InitStructure.GPIO_Pin = GPIO_Pin_5 | GPIO_Pin_6;
  31.          GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AN;
  32.          GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_NOPULL;
  33.          GPIO_Init(GPIOA, &GPIO_InitStructure);

  34.          /*Check that HSI oscillator is ready*/
  35.          while(RCC_GetFlagStatus(RCC_FLAG_HSIRDY) == RESET);
  36.          
  37.          RCC_APB2PeriphClockCmd(RCC_APB2Periph_ADC1, ENABLE);
  38.          ADC_DeInit(ADC1);
  39.          ADC_InitStructure.ADC_ScanConvMode = ENABLE;
  40.          ADC_InitStructure.ADC_ContinuousConvMode = ENABLE;
  41.          ADC_InitStructure.ADC_ExternalTrigConvEdge = ADC_ExternalTrigConvEdge_None;
  42.          ADC_InitStructure.ADC_DataAlign = ADC_DataAlign_Right;
  43.          ADC_InitStructure.ADC_NbrOfConversion = 2;
  44.          ADC_InitStructure.ADC_Resolution = ADC_Resolution_12b;
  45.          ADC_Init(ADC1, &ADC_InitStructure);

  46.          /*ADC1 regular channel10 configuration*/
  47.          ADC_RegularChannelConfig(ADC1, ADC_Channel_5, 1, ADC_SampleTime_48Cycles);
  48.          ADC_RegularChannelConfig(ADC1, ADC_Channel_6, 2, ADC_SampleTime_48Cycles);
  49.          
  50.          ADC_DMARequestAfterLastTransferCmd(ADC1, ENABLE);
  51.          
  52.          //Enable ADC1 DMA
  53.          ADC_DMACmd(ADC1, ENABLE);
  54.          
  55.          //Enable ADC1
  56.          ADC_Cmd(ADC1, ENABLE);

  57.          /*Wait until the ADC1 is ready*/
  58.          while(ADC_GetFlagStatus(ADC1, ADC_FLAG_ADONS) == RESET);

  59.          /*Start ADC1 Software Conversion*/
  60.          ADC_SoftwareStartConv(ADC1);
  61. }
复制代码

0条回答

一周热门 更多>