串口能通信,但是不能判断数据是什么情况啊???

2019-08-23 13:50发布

#include "usart.h"
void usart_init()
{
        GPIO_InitTypeDef GPIO_InitStructure;   
        USART_InitTypeDef USART_InitStructure;
        NVIC_InitTypeDef NVIC_InitStructure;   
         
        RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA,ENABLE);   
        RCC_APB2PeriphClockCmd(RCC_APB2Periph_AFIO,ENABLE);   
        RCC_APB2PeriphClockCmd(RCC_APB2Periph_USART1,ENABLE);
                 
        GPIO_InitStructure.GPIO_Speed=GPIO_Speed_50MHz;  
        GPIO_InitStructure.GPIO_Pin=GPIO_Pin_9;         
        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=9600;         
        USART_InitStructure.USART_WordLength=USART_WordLength_8b;   
        USART_InitStructure.USART_StopBits=USART_StopBits_1;      
        USART_InitStructure.USART_HardwareFlowControl=
        USART_HardwareFlowControl_None;                        
        USART_InitStructure.USART_Mode=USART_Mode_Tx | USART_Mode_Rx;
        USART_Init(USART1,&USART_InitStructure);        
       
        USART_Cmd(USART1,ENABLE);                     
        USART_ITConfig(USART1,USART_IT_RXNE,ENABLE);   
        USART_ClearFlag(USART1,USART_FLAG_TC);        
       
        NVIC_PriorityGroupConfig(NVIC_PriorityGroup_1);   
        NVIC_InitStructure.NVIC_IRQChannel=USART1_IRQn;   
        NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority=0;
        NVIC_InitStructure.NVIC_IRQChannelSubPriority=0;  
        NVIC_InitStructure.NVIC_IRQChannelCmd=ENABLE;   
        NVIC_Init(&NVIC_InitStructure);                 
}

/*************************************************************************************************/
void USART1_IRQHandler(void)
{
        u8 res;
        USART_ClearFlag(USART1,USART_FLAG_TC);  
        if(USART_GetFlagStatus(USART1,USART_IT_RXNE))  
        {
                res=USART_ReceiveData(USART1);      
                USART_SendData(USART1,res);      
                while(USART_GetFlagStatus(USART1,USART_FLAG_TXE)==Bit_RESET)
               {
               }
          if(res=='A') GPIO_ResetBits(GPIOB,GPIO_Pin_0);
        }
}
/*************************************************************************************************/

友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。