mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-14 02:27:26 -07:00
CHG: "hf 14b sim" - Added the possibility to call it with a PUPI/UID. Sample: "hf 14b sim u 11223344"
This commit is contained in:
parent
8040711b90
commit
dccddaef77
4 changed files with 159 additions and 127 deletions
|
@ -71,6 +71,11 @@ void ToSendStuffBit(int b) {
|
|||
}
|
||||
}
|
||||
|
||||
void PrintToSendBuffer(void){
|
||||
DbpString("Printing ToSendBuffer:");
|
||||
Dbhexdump(ToSendMax, ToSend, 0);
|
||||
}
|
||||
|
||||
//=============================================================================
|
||||
// Debug print functions, to go out over USB, to the usual PC-side client.
|
||||
//=============================================================================
|
||||
|
@ -1066,7 +1071,7 @@ void UsbPacketReceived(uint8_t *packet, int len)
|
|||
SnoopIso14443b();
|
||||
break;
|
||||
case CMD_SIMULATE_TAG_ISO_14443B:
|
||||
SimulateIso14443bTag();
|
||||
SimulateIso14443bTag(c->arg[0]);
|
||||
break;
|
||||
case CMD_ISO_14443B_COMMAND:
|
||||
//SendRawCommand14443B(c->arg[0],c->arg[1],c->arg[2],c->d.asBytes);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue