mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-19 21:03:48 -07:00
FIX: a compilation error for a static method in CmdHF14A.h
This commit is contained in:
parent
10403a6a30
commit
dd683ece72
3 changed files with 2 additions and 1 deletions
|
@ -168,6 +168,7 @@ int CmdHF14AReader(const char *Cmd)
|
||||||
PrintAndLog(" SAK : %02x [%d]", card.sak, resp.arg[0]);
|
PrintAndLog(" SAK : %02x [%d]", card.sak, resp.arg[0]);
|
||||||
|
|
||||||
// Double & triple sized UID, can be mapped to a manufacturer.
|
// Double & triple sized UID, can be mapped to a manufacturer.
|
||||||
|
// HACK: does this apply for Ultralight cards?
|
||||||
if ( card.uidlen > 4 ) {
|
if ( card.uidlen > 4 ) {
|
||||||
PrintAndLog("MANUFACTURER : %s", getTagInfo(card.uid[0]));
|
PrintAndLog("MANUFACTURER : %s", getTagInfo(card.uid[0]));
|
||||||
}
|
}
|
||||||
|
|
|
@ -20,5 +20,4 @@ int CmdHF14AReader(const char *Cmd);
|
||||||
int CmdHF14ASim(const char *Cmd);
|
int CmdHF14ASim(const char *Cmd);
|
||||||
int CmdHF14ASnoop(const char *Cmd);
|
int CmdHF14ASnoop(const char *Cmd);
|
||||||
|
|
||||||
static char* getTagInfo(uint8_t uid);
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -31,6 +31,7 @@
|
||||||
#include "data.h"
|
#include "data.h"
|
||||||
#include "graph.h"
|
#include "graph.h"
|
||||||
#include "ui.h"
|
#include "ui.h"
|
||||||
|
#include "util.h"
|
||||||
#include "cmdparser.h"
|
#include "cmdparser.h"
|
||||||
#include "cmdhf15.h"
|
#include "cmdhf15.h"
|
||||||
#include "../common/iso15693tools.h"
|
#include "../common/iso15693tools.h"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue