mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-03-19 19:38:52 +08:00
chg: 'hf mfu info' - ndef has 4 byte blocks on UL/NTAG
This commit is contained in:
parent
60ea44069e
commit
9e34a8e56d
1 changed files with 1 additions and 1 deletions
|
@ -690,7 +690,7 @@ static int ndef_print_CC(uint8_t *data) {
|
|||
PrintAndLogEx(NORMAL, "Capability Container: %s", sprint_hex(data, 4));
|
||||
PrintAndLogEx(NORMAL, " %02X : NDEF Magic Number", data[0]);
|
||||
PrintAndLogEx(NORMAL, " %02X : version %d.%d supported by tag", data[1], (data[1] & 0xF0) >> 4, data[1] & 0x0F);
|
||||
PrintAndLogEx(NORMAL, " %02X : Physical Memory Size: %d bytes", data[2], (data[2] + 1) * 8);
|
||||
PrintAndLogEx(NORMAL, " %02X : Physical Memory Size: %d bytes", data[2], (data[2] + 1) * 4);
|
||||
if (data[2] == 0x96)
|
||||
PrintAndLogEx(NORMAL, " %02X : NDEF Memory Size: %d bytes", data[2], 48);
|
||||
else if (data[2] == 0x12)
|
||||
|
|
Loading…
Add table
Reference in a new issue