函数原型:
int tcflush(int filedes,int quene)
参数解释
filedes: 描述符。
quene取值及含义:
*TCIFLUSH 清除输入队列
*TCOFLUSH 清除输出队列
*TCIOFLUSH 清除输入、输出队列
举例:tcflush(fd,TCIOFLUSH)
SerialPort com3 = new SerialPort("COM1" ,9600), System.IO.Ports.Parity.None, 8, System.IO.Ports.StopBits.One)com3.DiscardInBuffer()//丢弃来自串行驱动程序的接收缓冲区的数据每次接收数据后,调用DiscardInBuffer方法就可以把缓存中的数据清除了欢迎分享,转载请注明来源:内存溢出
评论列表(0条)