STM32G070: UART speed of 115200 is not possible with PC when running SYSCLK clock at 64MHZ - however is when run at 59.0MHZ
8MHZ HSE crystal. HSE selected and PLLCLK selected.
64MHZ / 115200 / 16 = 34.7222
Assuming the CPU picked 34 as the divisor then the baud rate is 117647.1 2% too high
But setting to 59MHz I was able to successfully communicated at 921,600
59MHZ / 921600 / 16 = 4.0012 (assuming divisor = 4 then 99.9702% accurate)
59MHZ / 115200 / 16 = 32.009 (assuming divisor = 32 then 99.9702% accurate)
What I'm asking for is in the IDE to show the UART Baud rate error, like the I2S device does as below.