串口接收一次数据之后不能接收第二次

2019-07-20 10:12发布

用的F3的板子,在调试串口的时候,串口的发送是没问题的,但是在接收数据的时候,第一次接收也是正确的,但是之后再接收的时候,程序在“while (USART_GetFlagStatus(USART1, USART_FLAG_RXNE) == RESET);”一直循环,走不出去,也就读不了数据了,程序也没办法接着走下去。请问有没有大佬遇到过这种问题,可以帮忙解决一下,万分感谢!!!


串口初始化如下:
void USART_Config(void)
{
  USART_InitTypeDef USART_InitStructure;
  GPIO_InitTypeDef GPIO_InitStructure;
USART_ClockInitTypeDef USART_ClockInitStruct;

  /* Enable GPIOB clock */
  RCC_AHBPeriphClockCmd(RCC_AHBPeriph_GPIOB , ENABLE);

  /* Enable USART1 APB clock */
  RCC_APB2PeriphClockCmd(RCC_APB2Periph_USART1, ENABLE);

  /* USART2 Pins configuration **************************************************/
  //GPIO_DeInit(GPIOB);

  /* Configure pins as AF pushpull */
  GPIO_InitStructure.GPIO_Pin = GPIO_Pin_6 | GPIO_Pin_7;
  GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF;
  GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
  GPIO_InitStructure.GPIO_OType = GPIO_OType_PP;
  GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_UP;//GPIO_PuPd_NOPULL;//GPIO_PuPd_UP                                                                                
  GPIO_Init(GPIOB, &GPIO_InitStructure);         
        
   /* Connect pin to Periph */
  GPIO_PinAFConfig(GPIOB, GPIO_PinSource6, GPIO_AF_7);   
  GPIO_PinAFConfig(GPIOB, GPIO_PinSource7, GPIO_AF_7);

  USART_DeInit(USART1);
  USART_InitStructure.USART_BaudRate = 115200;
  USART_InitStructure.USART_WordLength = USART_WordLength_8b;
  USART_InitStructure.USART_StopBits = USART_StopBits_1;
  USART_InitStructure.USART_Parity = USART_Parity_No;
  USART_InitStructure.USART_HardwareFlowControl = USART_HardwareFlowControl_None;
  USART_InitStructure.USART_Mode = USART_Mode_Rx | USART_Mode_Tx;
  USART_Init(USART1, &USART_InitStructure);

    /* USART enable */
  USART_Cmd(USART1, ENABLE);                                                                                                        
        
        
        
    /*·······串口时钟配置·············******************************/
  USART_ClockStructInit(&USART_ClockInitStruct);
USART_ClockInit(USART1,&USART_ClockInitStruct);        


}
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
20条回答
一条咸鱼
2019-07-22 10:32
xlong_06 发表于 2017-12-29 09:34
你换个串口试下吧,要是不行的话,一个是你串口初始化不行,要么就是你的硬件有问题。

换了USART2还是一样的效果,初始化的话我试过好多次,并且还把青风的例程初始化拷贝过来了,还是没效果。最新的进展是
“uint8_t UART_Recive(void)
{       
        while(!(USART1->ISR & (1<<5)));//等待接收到数据
        return(USART1->RDR);                         //读出数据
}”
里面的“while(!(USART1->ISR & (1<<5)));”一直在循环,照理来说“RXNE”寄存器位不是应该是硬件清零的吗?我这边一直有数据发过去,但是为什么就是一直不能置位呢?非常期待您能够给予帮助,非常感谢!!

一周热门 更多>