Re: [PATCH 1/1] stm32f2xx_usart: implement TX interrupts

2023-10-20 Thread Philippe Mathieu-Daudé
On 20/10/23 16:40, Hans-Erik Floryd wrote: Hi Phil, On Fri, 20 Oct 2023 at 14:42, Philippe Mathieu-Daudé wrote: Hi Hans-Erik, On 20/10/23 13:14, Hans-Erik Floryd wrote: Generate interrupt if either of the TXE, TC or RXNE bits are active and the corresponding interrupt enable bit is set. Si

Re: [PATCH 1/1] stm32f2xx_usart: implement TX interrupts

2023-10-20 Thread Hans-Erik Floryd
Hi Phil, On Fri, 20 Oct 2023 at 14:42, Philippe Mathieu-Daudé wrote: > > Hi Hans-Erik, > > On 20/10/23 13:14, Hans-Erik Floryd wrote: > > Generate interrupt if either of the TXE, TC or RXNE bits are active > > and the corresponding interrupt enable bit is set. > > > > Signed-off-by: Hans-Erik Flo

Re: [PATCH 1/1] stm32f2xx_usart: implement TX interrupts

2023-10-20 Thread Philippe Mathieu-Daudé
Hi Hans-Erik, On 20/10/23 13:14, Hans-Erik Floryd wrote: Generate interrupt if either of the TXE, TC or RXNE bits are active and the corresponding interrupt enable bit is set. Signed-off-by: Hans-Erik Floryd --- hw/char/stm32f2xx_usart.c | 29 + include/h

[PATCH 1/1] stm32f2xx_usart: implement TX interrupts

2023-10-20 Thread Hans-Erik Floryd
Generate interrupt if either of the TXE, TC or RXNE bits are active and the corresponding interrupt enable bit is set. Signed-off-by: Hans-Erik Floryd --- hw/char/stm32f2xx_usart.c | 29 + include/hw/char/stm32f2xx_usart.h | 10 ++ 2 files changed, 23