C#中无法在串口serialPort1_DataReceived启动定时器的解决方法

这里的串口名是serialPort1,定时器名是timerRxInterval

方法1------修改启动方法

cs 复制代码
private void serialPort1_DataReceived(object sender, SerialDataReceivedEventArgs e)
{
    Invoke((MethodInvoker)delegate 
    { 
        timerRxInterval.Start(); 
    });
}
private void timerRxInterval_Tick(object sender, EventArgs e)
{
    Console.WriteLine($"enter timerRxInterval_Tick");
    timerRxInterval.Stop();
}

方法2------更改计时器的类型

删除显示界面的定时器

cs 复制代码
System.Timers.Timer timerRxInterval= new System.Timers.Timer(100);
timerRxInterval.Elapsed += new ElapsedEventHandler(timerRxInterval_Tick);

private void serialPort1_DataReceived(object sender, SerialDataReceivedEventArgs e)
{
    timerRxInterval.Start(); 
}
private void timerRxInterval_Tick(object sender, EventArgs e)
{
    Console.WriteLine($"enter timerRxInterval_Tick");
    timerRxInterval.Stop();
}

原因

you may have started the timer from another thread, so try invoking it from the correct thread.

参考

c# - Timer won't tick - Stack Overflow

WinForm Windows.Forms.Timer Start方法无效,Tick 无效,不执行_winform的 tick-CSDN博客

相关推荐
alden_ygq几秒前
Go os/exec 使用实践
开发语言·数据库·golang
青木川崎10 分钟前
Mybatis面试题
java·开发语言·mybatis
wclass-zhengge18 分钟前
02UML图(D1_结构图)
java·开发语言·算法
老猿讲编程24 分钟前
详解Rust 中 String 和 str 的用途与区别
开发语言·后端·rust
菜鸟阿康学习编程32 分钟前
JDBC 实战项目(增删改查小系统,接近完美!)017
java·开发语言·数据库
九离十1 小时前
基于C语言的通讯录实现
c语言·开发语言
007php0071 小时前
深入了解计算机网络中的路由协议与性能优化
java·开发语言·数据库·后端·python·计算机网络·golang
brrdg_sefg1 小时前
飞牛os使用ddns-go配合华为云实现内网穿透
开发语言·golang·华为云
落霞与孤鹭齐飞。。1 小时前
SSM旅游信息管理系统
java·开发语言·mysql·毕业设计·课程设计·旅游
RacheV+TNY2642781 小时前
电商数据API接口的安全挑战与应对策略
大数据·开发语言·网络·数据库·人工智能