[SerialPort]クラスを使用してシリアル通信を実行しようとしています。ハイパーターミナルを使用してこのクラスをテストする簡単なコンソールアプリケーションプロジェクトを作成しました。
これは私のプログラムです:
class Program
{
private static bool _continue = true;
private static SerialPort port;
static void Main(string[] args)
{
try
{
port = new SerialPort("COM4", 9600, Parity.None, 8, StopBits.One);
port.ReadTimeout = port.WriteTimeout = 5000;
port.Open();
Thread thread = new Thread(Read);
thread.Start();
while (_continue)
{
string message = Console.ReadLine();
if (message.Equals("quit"))
_continue = false;
else
port.Write(message);
}
thread.Join();
port.Close();
}
catch (Exception ex)
{ }
}
private static void Read()
{
while (_continue)
{
try
{
string message = port.ReadLine();
Console.WriteLine(message);
}
catch (TimeoutException) { }
}
}
}
The problem is
次のようになります。(コンソールで)行を書き込むと、ハイパーターミナルGUIで自分が書いた内容を確認できますが、ハイパーターミナルを使用して行を書き込むと、プログラムによって常に。をスローするメッセージが読み取られませんTimeoutException
。
なんで?
どうすればこの問題を解決できますか?
ありがとう。