1. 通过stty工具设置串口参数,例如 stty -F /dev/ttyUSB0 raw speed 9600 -echo min 0 time 10 上例设置了ttyUSB0设备的数据流格式为raw,波特率9600,-echo表示不回显输入字符(-号在选项前面表示否定),min 0 表示读取内容时最少读取0个字符, time 10 表示读取执行结果时的超时时间是10/10秒,如果为time 1则此超时时间为1/10秒.不设置读取的超时时间,读取操作不能自动结束.更多选项详见stty的帮助信息…
1.首先要引用 System.IO.Ports using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using System.IO.Ports; using System.Threa…