1

你能告诉我这段代码有什么问题吗?代码在 C# 中......它给了我错误“写入超时”,但我设置了 WriteTimeout......

我想将一些数据写入串口。我使用.NET FRAMEWORK 3.5

}
SerialPort sp = new SerialPort("COM6", 9600, System.IO.Por­ts.Parity.None, 8,    System.IO.Por­ts.StopBits.O­ne);

sp.WriteTimeout = 500;
sp.Open();


try
{
sp.Write("Hello");
}
catch (TimeoutException) { Console.Write­Line("Error"); }

sp.Close();

Console.ReadKey();
}

谢谢

4

0 回答 0