Solved
G484 Uart transmit 0x00 not sent/received
Hello,
trying to send array below. The '0x00' part is not received in terminal, see image below.
char binary_data[] = {0x01, 0x02, 0xAB, 0x00, 0xCD};
HAL_UART_Transmit(&huart5, binary_data, sizeof(binary_data), HAL_MAX_DELAY);
How can I get this to work?
