New experimental feature

Keep client active even the PM3 hardware is disconnected
This commit is contained in:
wh201906
2021-02-21 23:00:07 +08:00
parent 90e4fde882
commit fb8e1a6e1b
10 changed files with 336 additions and 234 deletions
+7
View File
@@ -1341,3 +1341,10 @@ QList<quint8> Mifare::data_getACBits(const QString& text) //return empty QList i
return result;
}
QString Mifare::data_getUID()
{
if(data_isDataValid(dataList->at(0)))
return dataList->at(0).left(8);
else
return "";
}
+1
View File
@@ -111,6 +111,7 @@ public:
static QList<quint8> data_getACBits(const QString& text);
static int data_b2s(int block);
static bool data_isACBitsValid(const QString& text, QList<quint8> *returnHalfBytes = nullptr);
QString data_getUID();
public slots:
signals: