这一句的意思是允许USART_IT_RXNE中断,还是产生USART_IT_RXNE中断.

2019-07-14 19:49发布

USART_ITConfig(USART1,USART_IT_RXNE,ENABLE);
这一句的意思是允许USART_IT_RXNE中断,还是产生USART_IT_RXNE中断.
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
该问题目前已经被作者或者管理员关闭, 无法添加新回复
4条回答
hobbye501
1楼-- · 2019-07-15 03:57
是使能中断,按照你的理解 就是允许
看山还是山123
2楼-- · 2019-07-15 07:24
允许。
大熊现在很幸福
3楼-- · 2019-07-15 09:23
如果你是stm32初学者,建议你查看STM32固件库使用手册的中文翻译版.pdf
关于这个函数有如下解释:
捕获1.PNG
如果你有一定的stm32基础,建议你直接查看库函数源代码:
这个里面是官方原版解释,如下图:
捕获.PNG
叶子心
4楼-- · 2019-07-15 09:45
本帖最后由 叶子心 于 2017-9-7 10:08 编辑

允许USART_IT_RXNE中断。。。
/**
  * @brief  Checks whether the specified USART interrupt has occurred or not.
  * @param  USARTx: Select the USART or the UART peripheral.
  *   This parameter can be one of the following values:
  *   USART1, USART2, USART3, UART4 or UART5.
  * @param  USART_IT: specifies the USART interrupt source to check.
  *   This parameter can be one of the following values:
  *     @arg USART_IT_CTS:  CTS change interrupt (not available for UART4 and UART5)
  *     @arg USART_IT_LBD:  LIN Break detection interrupt
  *     @arg USART_IT_TXE:  Tansmit Data Register empty interrupt
  *     @arg USART_IT_TC:   Transmission complete interrupt
  *     @arg USART_IT_RXNE: Receive Data register not empty interrupt
  *     @arg USART_IT_IDLE: Idle line detection interrupt
  *     @arg USART_IT_ORE:  OverRun Error interrupt
  *     @arg USART_IT_NE:   Noise Error interrupt
  *     @arg USART_IT_FE:   Framing Error interrupt
  *     @arg USART_IT_PE:   Parity Error interrupt
  * @retval The new state of USART_IT (SET or RESET).
  */
ITStatus USART_GetITStatus(USART_TypeDef* USARTx, uint16_t USART_IT)

一周热门 更多>