Patch by jonor for raw ISO 1444B commands. See http://www.proxmark.org/forum/viewtopic.php?id=1729 for more info

This commit is contained in:
martin.holst@gmail.com 2013-09-01 18:41:05 +00:00
commit 7cf3ef203c
5 changed files with 193 additions and 53 deletions

View file

@ -744,10 +744,10 @@ void UsbPacketReceived(uint8_t *packet, int len)
AcquireRawAdcSamplesIso14443(c->arg[0]);
break;
case CMD_READ_SRI512_TAG:
ReadSRI512Iso14443(c->arg[0]);
ReadSTMemoryIso14443(0x0F);
break;
case CMD_READ_SRIX4K_TAG:
ReadSRIX4KIso14443(c->arg[0]);
ReadSTMemoryIso14443(0x7F);
break;
case CMD_SNOOP_ISO_14443:
SnoopIso14443();
@ -755,6 +755,9 @@ void UsbPacketReceived(uint8_t *packet, int len)
case CMD_SIMULATE_TAG_ISO_14443:
SimulateIso14443Tag();
break;
case CMD_ISO_14443B_COMMAND:
SendRawCommand14443B(c->arg[0],c->arg[1],c->arg[2],c->d.asBytes);
break;
#endif
#ifdef WITH_ISO14443a