mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-04-03 10:59:56 +08:00
added FSC correct calculation in hf 14a info
This commit is contained in:
parent
cf21f046d8
commit
30a6ef19b9
1 changed files with 5 additions and 4 deletions
|
@ -147,6 +147,10 @@ char* getTagInfo(uint8_t uid) {
|
||||||
return manufactureMapping[len-1].desc;
|
return manufactureMapping[len-1].desc;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// iso14a apdu input frame length
|
||||||
|
static uint16_t frameLength = 0;
|
||||||
|
uint16_t atsFSC[] = {16, 24, 32, 40, 48, 64, 96, 128, 256};
|
||||||
|
|
||||||
int usage_hf_14a_sim(void) {
|
int usage_hf_14a_sim(void) {
|
||||||
// PrintAndLogEx(NORMAL, "\n Emulating ISO/IEC 14443 type A tag with 4,7 or 10 byte UID\n");
|
// PrintAndLogEx(NORMAL, "\n Emulating ISO/IEC 14443 type A tag with 4,7 or 10 byte UID\n");
|
||||||
PrintAndLogEx(NORMAL, "\n Emulating ISO/IEC 14443 type A tag with 4,7 byte UID\n");
|
PrintAndLogEx(NORMAL, "\n Emulating ISO/IEC 14443 type A tag with 4,7 byte UID\n");
|
||||||
|
@ -486,10 +490,7 @@ int CmdHF14AInfo(const char *Cmd) {
|
||||||
(tb1 ? "" : " NOT"),
|
(tb1 ? "" : " NOT"),
|
||||||
(tc1 ? "" : " NOT"),
|
(tc1 ? "" : " NOT"),
|
||||||
fsci,
|
fsci,
|
||||||
fsci < 5 ? (fsci - 2) * 8 :
|
fsci < sizeof(atsFSC) ? atsFSC[fsci] : -1
|
||||||
fsci < 8 ? (fsci - 3) * 32 :
|
|
||||||
fsci == 8 ? 256 :
|
|
||||||
-1
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
pos = 2;
|
pos = 2;
|
||||||
|
|
Loading…
Add table
Reference in a new issue