Skip to main content
2 of 3
added 18 characters in body

The problem was in serial port connection settings. When I used these i was finnaly able to get response from board:

var port = new SerialPort("COM3", 115600);

port.Open();

port.Parity = Parity.None;
port.StopBits = StopBits.One;
port.DataBits = 8;
port.Encoding = Encoding.UTF8;
port.RtsEnable = true;
port.DtrEnable = true;
port.BreakState = false;