mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-20 05:13:22 -07:00
fix 'hf iclass snoop'
* code deduplication: use ISO15693 snoop function * speed up SnoopIso15693(), reduce DMA buffer size * add jamming option '-j' to 'hf iclass snoop' * fix issue #882 * whitespace fixes
This commit is contained in:
parent
1ce689684f
commit
be09ea8603
11 changed files with 166 additions and 817 deletions
|
@ -1142,7 +1142,7 @@ void UsbPacketReceived(uint8_t *packet, int len)
|
|||
break;
|
||||
|
||||
case CMD_SNOOP_ISO_15693:
|
||||
SnoopIso15693();
|
||||
SnoopIso15693(0, NULL);
|
||||
break;
|
||||
|
||||
case CMD_ISO_15693_COMMAND:
|
||||
|
@ -1307,7 +1307,7 @@ void UsbPacketReceived(uint8_t *packet, int len)
|
|||
#ifdef WITH_ICLASS
|
||||
// Makes use of ISO14443a FPGA Firmware
|
||||
case CMD_SNOOP_ICLASS:
|
||||
SnoopIClass();
|
||||
SnoopIClass(c->arg[0], c->d.asBytes);
|
||||
break;
|
||||
case CMD_SIMULATE_TAG_ICLASS:
|
||||
SimulateIClass(c->arg[0], c->arg[1], c->arg[2], c->d.asBytes);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue