我正在尝试与使用CDC的USB设备进行通信。设备管理器中将设备连接视为串行端口。我看到设备并能够打开串口。但是,当我尝试向设备发送消息时,会抛出 System.IO.IOException ,说:“信号量超时期限已过期。”我得到相同的异常与几个第三方C#串口终端。
使用与USB-RS232转换器相同的程序我可以通过串口与其他设备通信( 不是CDC )
CDC设备制造商说他们的模块使用标准的Windows CDC驱动程序,所以我的问题就出现了。我做错了什么?
我的代码:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.IO.Ports;
namespace ConsoleApplication1
{
class Program
{
private static readonly SerialPort _serial = new SerialPort();
static void Main(string[] args)
{
var portList = SerialPort.GetPortNames().ToList();
_serial.PortName = portList[0];
_serial.BaudRate = 9600;
_serial.Handshake = Handshake.None;
_serial.Parity = Parity.None;
_serial.DataBits = 8;
_serial.StopBits = StopBits.Two;
_serial.ReadTimeout = 3000;
_serial.WriteTimeout = 3000;
_serial.DataReceived += ReceiveData;
_serial.Open();
while (true)
{
string str = Console.ReadLine();
if (str.Equals("exit"))
return;
SerialCmdSend(str);
}
}
public static void SerialCmdSend(string data)
{
if (_serial.IsOpen)
{
try
{
byte[] hexstring = Encoding.ASCII.GetBytes(data);
foreach (byte hexval in hexstring)
{
byte[] _hexval = { hexval };
//The exception is thrown 3 sec. after the first call of the Write function
_serial.Write(_hexval, 0, 1);
}
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
throw;
}
}
}
private static void ReceiveData(object sender, SerialDataReceivedEventArgs e)
{
if (!_serial.IsOpen)
{
return;
}
try
{
while (_serial.BytesToRead > 0)
{
var b = _serial.ReadChar();
//Handle read data
}
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
throw;
}
}
}
}
答案 0 :(得分:0)
在完全配置连接之前,您的USB设备可能正在检查是否已启用DTR(数据终端就绪)。我建议在打开你的comport之前将以下代码添加到你的c#程序中。
_serial.DtrEnable = true;