1 Star 0 Fork 0

一颗星 / little-bee驱动调测工具

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
fsu.h 380 Bytes
一键复制 编辑 原始数据 按行查看 历史
一颗星 提交于 2023-06-02 10:04 . 导入代码
#ifndef FSU_H
#define FSU_H
#include <QObject>
class Fsu : public QObject
{
Q_OBJECT
public:
explicit Fsu(QObject *parent = nullptr);
virtual void open(const QString &parameter);
virtual void write(const QByteArray& data);
virtual void close();
signals:
void opened();
void received(const QByteArray& data);
void closed();
};
#endif // FSU_H
C++
1
https://gitee.com/asmallstar/little-bee-tool.git
git@gitee.com:asmallstar/little-bee-tool.git
asmallstar
little-bee-tool
little-bee驱动调测工具
master

搜索帮助