Hello :)I was trying to send some data to the console using USART1 (STM32F7508-DK).With the following simple data there was no problem:uint8_t data[] = "HELLO! \r\n";HAL_UART_Transmit(&huart1, data, sizeof(data), 1000);But when I try to display value...