add: spdlog and basic client code.

This commit is contained in:
2025-06-14 23:25:16 +08:00
parent 16572fa29c
commit 3f74ca3b1b
116 changed files with 26940 additions and 4 deletions

View File

@@ -1,6 +1,8 @@
#include <Protocol.h>
#include <QDebug>
#include "infoTest.h"
#include "msgTest.h"
int test1()
{
@@ -12,7 +14,7 @@ int test1()
QByteArray packet = Protocol::PackBuffer(frame);
qDebug() << "Test1 - Packed data size:" << packet.size();
qDebug() << "Packed data hex:" << packet.toHex();
qWarning() << "Packed data hex:" << packet.toHex();
auto ret = Protocol::ParseBuffer(packet);
return 0;
@@ -20,6 +22,7 @@ int test1()
int main()
{
performanceTest();
setConsoleMsgHandler();
test1();
return 0;
}