下图是RS485自收发切换电路,1201ARZ是隔离芯片,照着原子哥的代码修改程序,在串口调试助手收到乱码,是中断服务函数有问题吗

2019-07-21 07:47发布

代码是这样的:
void USART1_IRQHandler(void)
{
        u8 res;            
        if(USART_GetITStatus(USART1, USART_IT_RXNE) != RESET) //发生接收中断
        {                
                 res =USART_ReceiveData(USART1);         //读取接收到的数据       
       
        //  if(USART_GetFlagStatus(USART1, USART_FLAG_RXNE) ==RESET) //没有接收到数据
  // {
               
                  USART_SendData(USART1,res);
                       
        //  }       
        }                                                                                          
}
                                                                         
//初始化IO 串口1
//bound:波特率          
void RS485_Init(u32 bound)
{  
        GPIO_InitTypeDef GPIO_InitStructure;
        USART_InitTypeDef USART_InitStructure;
        NVIC_InitTypeDef NVIC_InitStructure;

        RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA, ENABLE);//使能GPIOA时钟
        RCC_APB2PeriphClockCmd(RCC_APB2Periph_USART1,ENABLE);//使能USART1时钟       

        GPIO_InitStructure.GPIO_Pin = GPIO_Pin_9;        //PA9 TX
       GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;        //复用推挽
        GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
       GPIO_Init(GPIOA, &GPIO_InitStructure);

      GPIO_InitStructure.GPIO_Pin = GPIO_Pin_10;//PA10  RX
      GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING; //浮空输入
      GPIO_Init(GPIOA, &GPIO_InitStructure);  

        //RCC_APB2PeriphResetCmd(RCC_APB2Periph_USART1,ENABLE);//复位串口1
        //RCC_APB2PeriphResetCmd(RCC_APB2Periph_USART1,DISABLE);//停止复位

       
        USART_InitStructure.USART_BaudRate = bound;//波特率设置
        USART_InitStructure.USART_WordLength = USART_WordLength_8b;//8位数据长度
        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); ; //初始化串口

        NVIC_InitStructure.NVIC_IRQChannel = USART1_IRQn; //使能串口1中断
        NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority = 3; //先占优先级3级
        NVIC_InitStructure.NVIC_IRQChannelSubPriority = 3; //从优先级3级
        NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE; //使能外部中断通道
        NVIC_Init(&NVIC_InitStructure); //根据NVIC_InitStruct中指定的参数初始化外设NVIC寄存器

       USART_ITConfig(USART1, USART_IT_RXNE, ENABLE);//开启中断

     USART_Cmd(USART1, ENABLE);                    //使能串口
  //USART_ClearFlag(USART1,USART_FLAG_TC); //清除 USARTx 的待处理标志位


}
由于485是自动收发切换的,感觉与串口实验一样啊

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