mirror of
https://github.com/wh201906/Proxmark3GUI.git
synced 2026-07-14 22:55:32 +08:00
New experimental feature
Keep client active even the PM3 hardware is disconnected
This commit is contained in:
@@ -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 "";
|
||||
}
|
||||
|
||||
@@ -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:
|
||||
|
||||
|
||||
Reference in New Issue
Block a user