我想在我的电脑和一些控制器板之间进行通信。
期望PC将在RS-485上发送电路板的标识符,然后它应该从电路板接收答案。
当我尝试接收回复时,我收到错误的数据。
这是我的代码:
public void set()
{
SerialPort sp = new SerialPort("COM1");
sp.Open();
if (sp.IsOpen)
{
byte[] id = new byte[]{0,0,0,0,0,0,0,0,0,0};
byte[] rec = new byte[540];
while (!end)
{
sp.Write(id,0,id.Length);
sp.Read(rec,0,rec.Length);
//do some with rec
//WORKING
//do soem with rec
}
}
sp.Close();
}
如果我使用RS-232,它可以工作,但是当我使用RS-485时则不行。
更新:
是RS-485 2线。(http://en.wikipedia.org/wiki/RS-485)
答案 0 :(得分:3)
我发现了问题。
sp.Read(rec,0,rec.Length);
Read
是一种非阻塞方法,因此它会读取缓冲区,但不会等待所有字节。因此,您需要使用此函数的返回值,该函数返回一个整数,该整数具有可读取的字节数。
我正在使用它:
int read = 0;
int shouldRead = readData1.Length;
int len;
while (read < shouldRead )
{
len = serialport.Read(buffer, 0, readData1.Length);
if (len == 0)
continue;
Array.Copy(buffer, 0, readData1, read, len);
read += len;
Thread.Sleep(20);
}