Serial Port Configuration

NAMECOM9
BAUDE RATE112500
DATA BIT8
PARITYNONE
HANDSHAKEOFF
MODEFREE

Example C# configuration

SerialPort serial = new SerialPort(“COM9”, 115200, Parity.None);

Example Visual Basic# configuration

Dim serial As SerialPort = new SerialPort(“COM9”, 115200, Parity.None);