mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-07-11 15:56:09 -07:00
fix 'hf iclass reader' and 'hf iclass readblk'
* don't do READCHECK when not trying to authenticate * standard LED handling * remove unused FLAG_ICLASS_READER_ONLY_ONCE and FLAG_ICLASS_READER_ONE_TRY * sanity check for negative times in TransmitTo15693Tag() * increase reader timeout for 'hf 15' functions to be enough for slot 7 answers to ACTALL * add 'hf iclass permute' inspired by RRG repository * whitespace fixes
This commit is contained in:
parent
a3bef9863b
commit
ece38ef311
9 changed files with 674 additions and 582 deletions
|
@ -1327,8 +1327,11 @@ void UsbPacketReceived(uint8_t *packet, int len)
|
|||
case CMD_ICLASS_READBLOCK:
|
||||
iClass_ReadBlk(c->arg[0]);
|
||||
break;
|
||||
case CMD_ICLASS_AUTHENTICATION: //check
|
||||
iClass_Authentication(c->d.asBytes);
|
||||
case CMD_ICLASS_CHECK:
|
||||
iClass_Check(c->d.asBytes);
|
||||
break;
|
||||
case CMD_ICLASS_READCHECK:
|
||||
iClass_Readcheck(c->arg[0], c->arg[1]);
|
||||
break;
|
||||
case CMD_ICLASS_DUMP:
|
||||
iClass_Dump(c->arg[0], c->arg[1]);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue