You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
273 B
18 lines
273 B
#ifndef PACKET_H
|
|
#define PACKET_H
|
|
|
|
#include <QObject>
|
|
|
|
typedef struct HidPacket_t
|
|
{
|
|
quint8 header;
|
|
quint8 dataLength;
|
|
quint8 type;
|
|
quint8 functionCode;
|
|
quint16 data;
|
|
quint16 timeTag;
|
|
}HidPacket_t;
|
|
|
|
Q_DECLARE_METATYPE(HidPacket_t)
|
|
|
|
#endif //PACKET_H
|
|
|