Working on a prototype and am using HAL_UART_Transmit to output to UART2. Upon output over UART2 the string seems to be truncated. Code below:```char stuff[] = "HELLO YOU FINE FELLOW";HAL_UART_Transmit(&huart2,stuff,sizeof(stuff),1);```Output is HELL...