Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
GPS デバイスをシリアル ポートに接続すると、テキスト ボックスにシリアル ポート データが表示されますが、Aristel rv20 PBX を同じポートに接続すると、PBX から受信したデータがテキスト ボックスに表示されません。私は何を逃しますか?
解決策を見つけました。実際には、データ ターミナルを有効にしていません。そのため、次のように StartListening() メソッドで有効にします。
_serialPort.DtrEnable = true;
シリアル通信中にデータ ターミナル レディ (DTR) 信号を有効にします。