1 Star 3 Fork 0

pengpeng5800/Qt 串口 网络 多线程

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
udpcom.h 949 Bytes
一键复制 编辑 原始数据 按行查看 历史
pengpeng5800 提交于 2021-09-22 05:51 . v1.0.0
#ifndef UDPCOM_H
#define UDPCOM_H
#include "icom.h"
#include <QUdpSocket>
#include <QSemaphore>
#include <QThread>
#include <QList>
class UdpCom : public ICom
{
Q_OBJECT
public:
UdpCom();
bool IsConnected() override;
bool Connect(char *pAddr=NULL, char *pPort=NULL) override;
bool Disconnect() override;
char GetChar(int timeout) override;
void PutChar(char c, QString sTarget) override;
int GetPacket(ComMessage &message, int timeout = -1) override;
void PutPacket(ComMessage &message) override;
QString GetStatus() override;
QString GetPort();
private:
QString m_address;
QString m_port;
QString m_status;
QUdpSocket *m_socket;
QSemaphore *m_sem;
QSemaphore *m_updatesem;
QList<ComMessage> m_message;
ComMessage m_updateMsg;
QThread *m_thread;
bool m_thread_running;
public slots:
void Udp_ReadyRead();
signals:
void recvMsg();
};
#endif // UDPCOM_H
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/pengpeng5800/Qt-SerialPort-Socket.git
git@gitee.com:pengpeng5800/Qt-SerialPort-Socket.git
pengpeng5800
Qt-SerialPort-Socket
Qt 串口 网络 多线程
master

搜索帮助