With TX command you can transmit one or more bytes (in HEX notation) to external UART of Carberry.

Synopsis

UART TX <BYTE>[<BYTE>]

WRITE accepts at least one parameter as:

ParamDescriptionRange
<BYTE>First byte to transmit 0x00 - 0xFF
[<BYTE>] Other optional bytes to transmit in sequence 0x00 - 0xFF

Notes

  1. Multiple data bytes must be always represented by two characters, whithout spaces from each other.

Return

TX command returns OK.

Examples

Transmitting one byte

UART TX 0D
OK

Transmitting CR/LF chars

UART TX 0D0A
OK