• bug in CMSIS USART driver
    hello, obviously there is a small bug in CMSIS USART Driver STM32F4xx Rev 2.3: line 1808: else if (usart->reg == USART3) { __HAL_RCC_USART2_CLK_ENABLE(); } correction: else if (usart->reg...
  • CMSIS USART DRIVER concerns
    Hello, In function Usart_Receive RXNE Interrupt is disabled before receiver busy check. I think you have to turn around. Imagine a call of this function while receiving data. Receiver remains...
  • CMSIS DRIVER USART - rx_timeout
    Hello, is thare any way to configure a time delay or a number of unreceived bits that will generate ARM_USART_EVENT_RX_TIMEOUT event through CMSIS DRIVER USART interface? I would like to use...
  • CMSIS Driver - USART issue
    Hi all, I am using the CMSIS Driver USART driver in Keil uVision with the STM32F746 discovery board and have a weird bug in the usart callback. I'm kind of following the example from - https://www...