你能告诉我这段代码有什么问题吗?代码在 C# 中......它给了我错误“写入超时”,但我设置了 WriteTimeout......
我想将一些数据写入串口。我使用.NET FRAMEWORK 3.5
}
SerialPort sp = new SerialPort("COM6", 9600, System.IO.Ports.Parity.None, 8, System.IO.Ports.StopBits.One);
sp.WriteTimeout = 500;
sp.Open();
try
{
sp.Write("Hello");
}
catch (TimeoutException) { Console.WriteLine("Error"); }
sp.Close();
Console.ReadKey();
}
谢谢