C# 串口实现空闲接收中断功能

本文介绍了一种通过串口接收数据并进行处理的方法。利用C#编程实现了一个应用程序,该程序可以设置串口参数,并在接收数据时采用超时机制来捕获完整的数据帧。当读取操作超过预设的超时时间后,会生成一帧数据并将其存入队列以备后续处理。
摘要由CSDN通过智能技术生成

  • 设置接收超时毫秒数ReadTimeout
  • 线程接收,每次读一个字节,添加到列表中
  • 接收超时时,捕获异常,生成一帧数据

啥也不说了,看代码

private void Form1_Load(object sender, EventArgs e)
        {
            var sList = SerialPort.GetPortNames();
            this.serialPort1.PortName = sList.Last();
            this.serialPort1.BaudRate = 9600;
            this.serialPort1.ReadTimeout = 10;
            this.serialPort1.Open();
            thread = new Thread(new ThreadStart(ThreadReceive));
            thread.Start();
            timer1.Start();

        }

        Queue<List<byte>> queueList = new Queue<List<byte>>();
        Thread thread = null;
        List<byte> receiveList = new List<byte>();
        void ThreadReceive()
        {

            while (true)
            {
                try
                {
                int data = this.serialPort1.ReadByte();
                if (data >= 0)
                    receiveList.Add((byte)data);
                }
                catch
                {
                    if (receiveList.Count > 0)
                    {
                        queueList.Enqueue(receiveList);
                        receiveList = new List<byte>();
                    }
                }
            }
        }


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值