c#和Comm Ports

时间:2011-08-10 02:07:17

标签: c# vb6 serial-port

嘿所有我试图打开和关闭以下RS232命令的A / V接收器:

 @MAIN:VOL=Down & Chr$(13) & Chr$(10)

这在我的VB6应用程序中运行得很好:

 MSCommAV.CommPort = 4
 MSCommAV.RThreshold = 1
 MSCommAV.Settings = "9600,N,8,1"
 MSCommAV.RTSEnable = True
 MSCommAV.PortOpen = True
 MSCommAV.Output = "@MAIN:VOL=Down" & Chr$(13) & Chr$(10)

但是我似乎无法在我的C#应用​​程序中使用它:

 PCComm.CommunicationManager commAV = new PCComm.CommunicationManager();
 commAV.Parity = "None";
 commAV.StopBits = "One";
 commAV.DataBits = "8";
 commAV.BaudRate = "9600";
 commAV.PortName = "COM4";
 commAV.CurrentTransmissionType = PCComm.CommunicationManager.TransmissionType.Text; //.Hex
 commAV.OpenPort();
 commAV.WriteData("@MAIN:VOL=Down" + "\r" + "\n"); //Vol DOWN

我认为它不起作用的原因是“\ r”和“\ n”取代了vb6 Chr $(13)& CHR $(10)。

CommunicationManager.cs:http://snipt.org/xmklh

1 个答案:

答案 0 :(得分:5)

我不确定PCComm.CommunicationManager是什么。但是,在没有任何特殊API的情况下通过Serial进行通信相当简单。这个C#代码相当于VB6代码:

var port = new SerialPort("COM4", 9600, Parity.None, 8, StopBits.One);
port.RtsEnable = true;
port.Open();
port.Write("@MAIN:VOL=Down\r\n");
port.Close();

修改

您的CommunicationManager可能失败,因为它未将RtsEnable属性设置为true。你的VB6代码就是在第4行。