微波EDA网,见证研发工程师的成长!
首页 > 研发问答 > 嵌入式设计讨论 > MCU和单片机设计讨论 > STM32串口问题

STM32串口问题

时间:10-02 整理:3721RD 点击:
我的程序如下,实现串口助手网单片机发送,单片机返回相同的数据。可是串口助手一直接受不到数据。终端函数如下。
void USART1_IRQHandler(void)
{
          if(USART_GetITStatus(USART1, USART_IT_RXNE) != RESET)    //?
  {  
               
               
                USART_ClearITPendingBit(USART1,USART_IT_RXNE);
                Rx = USART_ReceiveData(USART1);
           USART_SendData(USART1,0x88);                           
        while(USART_GetFlagStatus(USART1, USART_FLAG_TC) == RESET);
}
下面的是main 中的函数
void USART_Config(void)
{
  GPIO_InitTypeDef  GPIO_InitStructure;
        USART_InitTypeDef USART_InitStructure;
        RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA,ENABLE);
        RCC_APB2PeriphClockCmd(RCC_APB2Periph_USART1,ENABLE);
        GPIO_InitStructure.GPIO_Pin=GPIO_Pin_9;
  GPIO_InitStructure.GPIO_Speed=GPIO_Speed_50MHz;
  GPIO_InitStructure.GPIO_Mode=GPIO_Mode_AF_PP;
        GPIO_Init(GPIOA, &GPIO_InitStructure);
       
        GPIO_InitStructure.GPIO_Pin = GPIO_Pin_10;
  GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING;
  GPIO_Init(GPIOA, &GPIO_InitStructure);
       
  USART_InitStructure.USART_BaudRate = Baud;
  USART_InitStructure.USART_WordLength = USART_WordLength_8b;
  USART_InitStructure.USART_StopBits = USART_StopBits_1;
  USART_InitStructure.USART_Parity = USART_Parity_Even;
  USART_InitStructure.USART_HardwareFlowControl =USART_HardwareFlowControl_None;
  USART_InitStructure.USART_Mode = USART_Mode_Tx | USART_Mode_Rx;
  USART_Init(USART1, &USART_InitStructure);
         USART_ITConfig(USART1, USART_IT_RXNE, ENABLE);   //?
    USART_ITConfig(USART1, USART_IT_TXE, DISABLE);         //?
        USART_Cmd(USART1, ENABLE);
}
void NVIC_Config(void)
{
   NVIC_InitTypeDef  NVIC_InitStructure;
         NVIC_PriorityGroupConfig(NVIC_PriorityGroup_0);
         NVIC_InitStructure.NVIC_IRQChannel=USART1_IRQn;
         NVIC_InitStructure.NVIC_IRQChannelSubPriority=0;
         NVIC_InitStructure.NVIC_IRQChannelCmd=ENABLE;
         NVIC_Init(&NVIC_InitStructure);
}
int  main(void)
{   
          
          
                GPIO_Config();
          USART_Config();
    NVIC_Config();
       
    while(1);
}

Copyright © 2017-2020 微波EDA网 版权所有

网站地图

Top