1 Star 0 Fork 1

Abnerg/BMS_SERIAL

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
mythread.cpp 429 Bytes
一键复制 编辑 原始数据 按行查看 历史
zhaohongqiang 提交于 2017-10-13 10:02 . 1、修正线程退出
#include "mythread.h"
#define BMS_CC_LANG
#include "bms/bms.h"
#include "mainbmswindow.h"
mythread::mythread(QObject *parent) : QThread(parent)
{
stopped = false;
}
void mythread::run()
{
/*while(!stopped)*/{
bms_canbus();//函数中包含循环,so去得在此的循环
}
stopped = false;
}
void mythread::stop()
{
stopped = true;
bms_canstop();
bms_exit();
MainBMSWindow::ui_exit();
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/abnerg/BMS_SERIAL.git
git@gitee.com:abnerg/BMS_SERIAL.git
abnerg
BMS_SERIAL
BMS_SERIAL
master

搜索帮助