bugfix: STM32cubeMX uses uninitialized memory for LL_USART_Init
When generating MX_USART1_UART_Init for a usart in HalfDuplex mode, the USART_InitStruct.HardwareFlowControl field remain uninitialized which leads to unpredictable behavior of the system. in my case the I2C DMA was triggered by USART DMA requests....
fix: adding the missing initialization fields in mcu/config/llConfig/USART-STM32F0xx_LLConfigs.xml fixes the issue.
I only fixed this for my F030F4 project, the same issue might also be present for other configurations/mcu's
regards
ingo
#stm32cubemx-bug-ll_usart_init #stm32cubemx-bug