mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 13:53:55 -07:00
Merge pull request #1239 from VortixDev/VortixDev-patch-restore-annotation
Fix RESTORE annotation
This commit is contained in:
commit
c80a75911a
2 changed files with 5 additions and 1 deletions
|
@ -3,6 +3,7 @@ All notable changes to this project will be documented in this file.
|
|||
This project uses the changelog in accordance with [keepchangelog](http://keepachangelog.com/). Please use this to write notable changes, which is not the same as git commit log...
|
||||
|
||||
## [unreleased][unreleased]
|
||||
- Fix RESTORE mis-annotation (@VortixDev)
|
||||
- Changed `smart raw` - now uses NG (@iceman1001)
|
||||
- Added `hf iclass configcard` - now can download / generate config card dumps with a cardhelper [WIP] (@iceman1001)
|
||||
- Fix swapped DESELECT and WTX annotations (@VortixDev)
|
||||
|
|
|
@ -228,7 +228,10 @@ int applyIso14443a(char *exp, size_t size, uint8_t *cmd, uint8_t cmdsize) {
|
|||
snprintf(exp, size, "DEC(%d)", cmd[1]);
|
||||
break;
|
||||
case MIFARE_CMD_RESTORE:
|
||||
if (cmdsize == 4)
|
||||
snprintf(exp, size, "RESTORE(%d)", cmd[1]);
|
||||
else
|
||||
return 0;
|
||||
break;
|
||||
case MIFARE_CMD_TRANSFER:
|
||||
snprintf(exp, size, "TRANSFER(%d)", cmd[1]);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue