2 Star 0 Fork 1

xiaopaigu/send_recv_file

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
mainwindow.h 1.07 KB
一键复制 编辑 原始数据 按行查看 历史
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include <QMessageBox>
#include <QFile>
#include <QTimer>
#include <QTimerEvent>
#include <QtSerialPort/QSerialPort>
#include <QtSerialPort/QSerialPortInfo>
#include "aes_tcp/aes_tcp.h"
#include "lus_core/lus_prase.h"
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = nullptr);
~MainWindow();
void timerEvent(QTimerEvent *event);
aes_tcp *my_tcp = new aes_tcp;
lus_prase *my_lus = new lus_prase;
QSerialPort *wireless_port;
QSerialPort *gps_port;
void serial_init(QSerialPort * port, QString name);
QByteArray data;
QString data2;
QByteArray data3;
QByteArray data4;
QString gps_data;
QRegExp reg;
QTimer *timer;
private:
Ui::MainWindow *ui;
private slots:
void read_tcp_msg(QByteArray);//receive message
void send_urt_msg();
// lus send msg slot fun
void send_lus_cmd(QByteArray cmd);
signals:
void read_msg(QByteArray);
};
#endif // MAINWINDOW_H
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/learn-123456789/send_recv_file.git
[email protected]:learn-123456789/send_recv_file.git
learn-123456789
send_recv_file
send_recv_file
master

搜索帮助