faied do uart send with uart5 with stm32h7b0zb
I use cubemx generate a project with uart5. It's ok.
But when I move some init codes of uart5 to function ``void SystemInit (void)`` tail as below
```
MPU_Config();
HAL_Init();
SystemClock_Config();
PeriphCommonClock_Config();
MX_UART5_Init();
dbg_console_tx5("ABC21", 5);
```
when I debug with cmsis-dap debugger I found the code stuck with

besides the function ``dbg_console_tx5`` is
```
```
is there any tips of this issue ?
