mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-07-30 11:38:38 -07:00
iso15693: decode WRITE_MULTI_BLOCK in 'hf list 15'
This commit is contained in:
parent
124bed1513
commit
1f0ef06374
3 changed files with 4 additions and 3 deletions
|
@ -1611,8 +1611,8 @@ void ReaderIso15693(uint32_t parameter) {
|
|||
TagUID[3] = answer[5];
|
||||
TagUID[4] = answer[6];
|
||||
TagUID[5] = answer[7];
|
||||
TagUID[6] = answer[8];
|
||||
TagUID[7] = answer[9]; // IC Manufacturer code always E0
|
||||
TagUID[6] = answer[8]; // IC Manufacturer code
|
||||
TagUID[7] = answer[9]; // always E0
|
||||
}
|
||||
|
||||
Dbprintf("%d octets read from IDENTIFY request:", answerLen);
|
||||
|
|
|
@ -254,6 +254,7 @@ void annotateIso15693(char *exp, size_t size, uint8_t* cmd, uint8_t cmdsize) {
|
|||
case ISO15693_WRITEBLOCK :snprintf(exp, size, "WRITEBLOCK");return;
|
||||
case ISO15693_LOCKBLOCK :snprintf(exp, size, "LOCKBLOCK");return;
|
||||
case ISO15693_READ_MULTI_BLOCK :snprintf(exp, size, "READ_MULTI_BLOCK");return;
|
||||
case ISO15693_WRITE_MULTI_BLOCK :snprintf(exp, size, "WRITE_MULTI_BLOCK");return;
|
||||
case ISO15693_SELECT :snprintf(exp, size, "SELECT");return;
|
||||
case ISO15693_RESET_TO_READY :snprintf(exp, size, "RESET_TO_READY");return;
|
||||
case ISO15693_WRITE_AFI :snprintf(exp, size, "WRITE_AFI");return;
|
||||
|
|
|
@ -187,7 +187,7 @@ NXP/Philips CUSTOM COMMANDS
|
|||
#define ISO15693_WRITEBLOCK 0x21
|
||||
#define ISO15693_LOCKBLOCK 0x22
|
||||
#define ISO15693_READ_MULTI_BLOCK 0x23
|
||||
#define ISO15693_WRITE_MULTI_BLOCK 0x23
|
||||
#define ISO15693_WRITE_MULTI_BLOCK 0x24
|
||||
#define ISO15693_SELECT 0x25
|
||||
#define ISO15693_RESET_TO_READY 0x26
|
||||
#define ISO15693_WRITE_AFI 0x27
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue