关于串口中断接收数据,有数据到来时不能进去中断函数

2019-07-20 19:35发布

程序写的是中断接收数据,,但是有数据到来时不能进去中断函数,汇编窗口中显示跳到了黄 {MOD}的那一行。。
然后程序就死了。。再点调试的运行按钮也只停留在这一行了。。


有人遇到过这个问题吗??求帮忙啊
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
9条回答
电子爱好探索者
2019-07-22 00:22
你好,我现在也遇到这个问题,发现库函数stm32f10x_usart.c这里:ITStatus USART_GetITStatus(USART_TypeDef* USARTx, uint16_t USART_IT)
{
  uint32_t bitpos = 0x00, itmask = 0x00, usartreg = 0x00;
  ITStatus bitstatus = RESET;
  /* Check the parameters */
  assert_param(IS_USART_ALL_PERIPH(USARTx));
  assert_param(IS_USART_GET_IT(USART_IT));
  /* The CTS interrupt is not available for UART4 and UART5 */
  if (USART_IT == USART_IT_CTS)
  {
    assert_param(IS_USART_123_PERIPH(USARTx));
  }   
  
  /* Get the USART register index */
  usartreg = (((uint8_t)USART_IT) >> 0x05);
  /* Get the interrupt position */
  itmask = USART_IT & IT_Mask;
  itmask = (uint32_t)0x01 << itmask;
  
  if (usartreg == 0x01) /* The IT  is in CR1 register */
  {
    itmask &= USARTx->CR1;
  }
  else if (usartreg == 0x02) /* The IT  is in CR2 register */
  {
    itmask &= USARTx->CR2;
  }
  else /* The IT  is in CR3 register */
  {
    itmask &= USARTx->CR3;
  }
  
  bitpos = USART_IT >> 0x08;
  bitpos = (uint32_t)0x01 << bitpos;
  bitpos &= USARTx->SR;
  if ((itmask != (uint16_t)RESET)&&(bitpos != (uint16_t)RESET))
  {
    bitstatus = SET;
  }
  else
  {
    bitstatus = RESET;
  }
  
  return bitstatus;  
}


里面这样写:
/* The CTS interrupt is not available for UART4 and UART5 */
  if (USART_IT == USART_IT_CTS)
  {
    assert_param(IS_USART_123_PERIPH(USARTx));
  }   
没有包含串口4和串口5,于是我跟进在stm32f10x_usart.h文件里将:

#define IS_USART_ALL_PERIPH(PERIPH) (((PERIPH) == USART1) ||
                                     ((PERIPH) == USART2) ||
                                     ((PERIPH) == USART3) ||
                                     ((PERIPH) == UART4) ||
                                     ((PERIPH) == UART5))

#define IS_USART_123_PERIPH(PERIPH) (((PERIPH) == USART1) ||
                                     ((PERIPH) == USART2) ||
                                     ((PERIPH) == USART3))

#define IS_USART_1234_PERIPH(PERIPH) (((PERIPH) == USART1) ||
                                      ((PERIPH) == USART2) ||
                                      ((PERIPH) == USART3) ||
                                      ((PERIPH) == UART4))


改为:
#define IS_USART_ALL_PERIPH(PERIPH) (((PERIPH) == USART1) ||
                                     ((PERIPH) == USART2) ||
                                     ((PERIPH) == USART3) ||
                                     ((PERIPH) == UART4) ||
                                     ((PERIPH) == UART5))

#define IS_USART_123_PERIPH(PERIPH)  (((PERIPH)== USART1) ||
                                     ((PERIPH) == USART2) ||
                                     ((PERIPH) == USART3) ||
                                     ((PERIPH) == UART4) ||
                                     ((PERIPH) == UART5))


#define IS_USART_1234_PERIPH(PERIPH) (((PERIPH)== USART1) ||
                                     ((PERIPH) == USART2) ||
                                     ((PERIPH) == USART3) ||
                                     ((PERIPH) == UART4) ||
                                     ((PERIPH) == UART5))

但我改完后发现,在中断接收数据,但有数据到来时不能进去中断函数,程序死了,请问你知道怎么解决吗?

一周热门 更多>