关于STN32F103睡眠后ADC通道数据错乱问题

2019-08-08 11:17发布

各位大神,我最近在做低功耗,用的是串口中断唤醒,SLEEP,模式睡眠。ADC采用DMA多通道采集,我这里用了9个通道,但是在睡眠之前把ADC使能关闭,唤醒后再次使能后应该是通道123的数据会在通道456,或者其它的通道出现。实在是不知道什么原因,大家讨论指点一下。不甚感激。
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
7条回答
haoxiangzhong
2019-08-09 01:07
void low_power(void)
{
  GPIO_InitTypeDef GPIO_InitStructure;
  GPIO_InitStructure.GPIO_Pin = GPIO_Pin_All_NOUART;
  GPIO_InitStructure.GPIO_Speed = GPIO_Speed_2MHz;
  GPIO_InitStructure.GPIO_Mode =  GPIO_Mode_AIN;   
  GPIO_Init(GPIOA, &GPIO_InitStructure);
  //PB0/1 ??????????
  GPIO_InitStructure.GPIO_Pin = GPIO_Pin_All_NOLED;
  GPIO_InitStructure.GPIO_Speed = GPIO_Speed_2MHz;
  GPIO_InitStructure.GPIO_Mode =  GPIO_Mode_AIN;
  GPIO_Init(GPIOB, &GPIO_InitStructure);
  TIM_Cmd(TIM2, DISABLE);
  TIM_Cmd(TIM4, DISABLE);
  ADC_DMACmd(ADC1, DISABLE); //ʹÄÜADC1µÄDMA´«Ê䣬ADC_CR2λ8
////    ADC_SoftwareStartConvCmd(ADC1, DISABLE);//Èí¼þÆô¶¯ADת»»
  ADC_Cmd(ADC1, DISABLE); //ʹÄܵÄADC1,ADC_CR2λ0
///////////////////////上面是睡眠前准备,关闭不用的IO,以及定时器
  __wfi();
  Sys_Sleepy();//开始睡眠
// ADC_DMACmd(ADC1, ENABLE); //ʹÄÜADC1µÄDMA´«Ê䣬ADC_CR2λ8
     
//  ADC_Cmd(ADC1, ENABLE); //ʹÄܵÄADC1,ADC_CR2λ0
ADC_SoftwareStartConvCmd(ADC1, ENABLE);//Èí¼þÆô¶¯ADת»»
  TIM_Cmd(TIM2, ENABLE);
  TIM_Cmd(TIM4, ENABLE);


/*---------------------------下面是恢复----------------------------*/
  GPIO_InitStructure.GPIO_Pin = GPIO_Pin_0|GPIO_Pin_1|GPIO_Pin_2|GPIO_Pin_4|GPIO_Pin_5|GPIO_Pin_6|GPIO_Pin_7;
  GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AIN;  //Ä£ÄâÊäÈëÒý½Å
  GPIO_Init(GPIOA, &GPIO_InitStructure);
  
  GPIO_InitStructure.GPIO_Pin = GPIO_Pin_0|GPIO_Pin_1;
  GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AIN; //??????
  GPIO_Init(GPIOB, &GPIO_InitStructure);
  ADC_DMACmd(ADC1, ENABLE); //ʹÄÜADC1µÄDMA´«Ê䣬ADC_CR2λ8
   
    ADC_Cmd(ADC1, ENABLE); //ʹÄܵÄADC1,ADC_CR2λ0
  //PB0/1 ??????????
//  GPIO_InitStructure.GPIO_Pin = GPIO_Pin_0|GPIO_Pin_1;
//  GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AIN; //??????
//  GPIO_Init(GPIOB, &GPIO_InitStructure);
  GPIO_InitStructure.GPIO_Pin = LED_ERROR|LED_COMM;        
  GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;   
  GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
  GPIO_Init(ERRO_PORT, &GPIO_InitStructure);
  GPIO_SetBits(ERRO_PORT,LED_ERROR);  
}
//这里是串口唤醒后开启AD
   void USART1_IRQHandler(void)
{
  // RX
  if(USART_GetITStatus(USART1, USART_IT_RXNE) != RESET)
  {modbus_rx_buff[MB_rx_offset] = USART_ReceiveData(USART1);
  {              if((modbus_rx_buff[0] == BROADCAST_ADDR)||(modbus_rx_buff[0] ==MB_device_addr_by_setting))
{
MB_rx_offset++;

timer = TIMOUT;
    if(MB_rx_offset<=1)
  {
ADC_DMACmd(ADC1, ENABLE);
ADC_Cmd(ADC1, ENABLE);
}
TIM_Cmd(TIM3, ENABLE);
USART_ClearITPendingBit(USART1,USART_IT_RXNE);

}
}

一周热门 更多>