c#|c# 读取串口——如何全部读取
【c#|c# 读取串口——如何全部读取】 public byte[] Read() { byte[] inbuffer = null;
if (serialPort.IsOpen && serialPort.BytesToRead > 0) { try { inbuffer = new byte[serialPort.BytesToRead];
serialPort.Read(inbuffer, 0, serialPort.BytesToRead);
string strRaad = ASCIIEncoding.ASCII.GetString(inbuffer, 0, inbuffer.Length);
while (strRaad.Contains(serialPort.NewLine)) { Thread.Sleep(800);
if (serialPort.BytesToRead == 0) break;
byte[] temp = inbuffer;
byte[] inbuffer2 = new byte[serialPort.BytesToRead];
serialPort.Read(inbuffer2, 0, serialPort.BytesToRead);
inbuffer = new byte[inbuffer.Length + inbuffer2.Length];
temp.CopyTo(inbuffer, 0);
inbuffer2.CopyTo(inbuffer, temp.Length);
strRaad = ASCIIEncoding.ASCII.GetString(inbuffer, 0, inbuffer.Length);
} } catch { } } return inbuffer;
}
推荐阅读
- 急于表达——往往欲速则不达
- 慢慢的美丽
- 《真与假的困惑》???|《真与假的困惑》??? ——致良知是一种伟大的力量
- 2019-02-13——今天谈梦想()
- 考研英语阅读终极解决方案——阅读理解如何巧拿高分
- Ⅴ爱阅读,亲子互动——打卡第178天
- 低头思故乡——只是因为睡不着
- 取名——兰
- 每日一话(49)——一位清华教授在朋友圈给大学生的9条建议
- 广角叙述|广角叙述 展众生群像——试析鲁迅《示众》的展示艺术