Solved
Struggling to get UART debug printer to work with fresh MX Build.
I build a new application with a custom GATT and would like to use the UART debug features that can be seen in the examples. I configured my IOC as follows and verifid the UART is working with the following code:
char msg[] = "Begin1\n";
HAL_UART_Transmit_DMA(&huart1, msg, sizeof(msg));However no debug messages are getting printed properly.. I have attached a screenshot and my complete example project. Working with the STM32WB5M-DK

