mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-07-16 10:03:04 -07:00
trace list 15 annotation
This commit is contained in:
parent
ede0059b10
commit
eaf0ecfe6e
1 changed files with 8 additions and 2 deletions
|
@ -392,9 +392,15 @@ void annotateIso15693(char *exp, size_t size, uint8_t *cmd, uint8_t cmdsize) {
|
|||
case ISO15693_STAYQUIET:
|
||||
snprintf(exp, size, "STAY_QUIET");
|
||||
return;
|
||||
case ISO15693_READBLOCK:
|
||||
snprintf(exp, size, "READBLOCK");
|
||||
case ISO15693_READBLOCK: {
|
||||
|
||||
uint8_t block = 0;
|
||||
if (cmdsize == 13)
|
||||
block = cmd[10];
|
||||
|
||||
snprintf(exp, size, "READBLOCK(%d)", block);
|
||||
return;
|
||||
}
|
||||
case ISO15693_WRITEBLOCK:
|
||||
snprintf(exp, size, "WRITEBLOCK");
|
||||
return;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue