I'm having trouble writing a hex string for UART. I can send a single byte, for example:
UART2_Write(0x80);
I'm now needing to do a full hex string so something like the following:
UART2_Write(0x80, 0x70, 0xAD, etc)
Can anyone help? Do I need to create a string and send the string over UART? Any help is much appreciated :)