Adds a UDP/IP header to the input data and send over the wired LAN.
This can be used to communicate with PCs or other devices that support the UDP/IP protocol.
Specify the port number as a 16-bit Little Endian value.
The maximum length of data is 1472 bytes and the data format is 16-bit, Little Endian.
@TXU(Destination IP address)(Destination port number)(Sender port number)(Send data length)(Data)
No response
=>"@TXU", 0xC0, 0xA8, 0x84, 0x01, Destination IP address
0x00, 0x10, Destination port number
0x01, 0x10, Sender port number
0x05, 0x00, Send data length
0xAA, 0x55, 0xAA, 0x55, 0xFF Data
Sends 5 bytes of data to port 1000h on the device with IP address 192.168.132.1.