我有一个与外部协议连接的应用程序 使用串行通信。
我需要知道唤醒位是否在它发送给我的每个数据包(9位)上设置,并且通信速率必须低于40ms,并且必须在20 ms内发送响应。 该框架封装从端口读取的位,并仅发送回8位 数据给我。此外,由于调整问题,我不能等待奇偶校验错误事件。
我需要知道如何读取9位,或者是否有http://www.wcscnet.com/CdrvLBro.htm的免费替代
答案 0 :(得分:8)
您是否尝试将串行读取功能放在奇偶校验错误事件处理程序中?根据驱动程序的不同,这可能足够快。
这不会发生在某个老虎机协议上,不是吗?我这样做是为了你的乐趣。也许它会起作用?
{
public Form1()
{
InitializeComponent();
}
SerialPort sp;
private void Form1_Load(object sender, EventArgs e)
{
sp = new SerialPort("COM1", 19200, Parity.Space, 8, StopBits.One);
sp.ParityReplace = 0;
sp.ErrorReceived += new SerialErrorReceivedEventHandler(sp_SerialErrorReceivedEventHandler);
sp.ReadTimeout = 5;
sp.ReadBufferSize = 256;
sp.Open();
}
object msgsLock = new object();
Queue<byte[]> msgs = new Queue<byte[]>();
public void sp_SerialErrorReceivedEventHandler(Object sender, SerialErrorReceivedEventArgs e)
{
if (e.EventType == SerialError.RXParity)
{
byte[] buffer = new byte[256];
try
{
int cnt = sp.Read(buffer, 0, 256);
byte[] msg = new byte[cnt];
Array.Copy(buffer, msg, cnt);
if (cnt > 0)
{
lock (msgsLock)
{
msgs.Enqueue(msg);
}
}
}
catch
{
}
}
}
private void timer1_Tick(object sender, EventArgs e)
{
if (msgs.Count > 0)
{
lock (msgsLock)
{
listBox1.Items.Insert(0, BitConverter.ToString(msgs.Dequeue()));
}
}
}
}
}
无论如何,为了更好地控制串口,我建议使用win32调用来获得你想要的东西。