mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-11-11 01:55:38 +08:00
FIX: maybe I should actually send the uid bytes with the command request....
This commit is contained in:
parent
3649b640e6
commit
5ea2c88515
1 changed files with 2 additions and 0 deletions
|
@ -318,6 +318,8 @@ int CmdHF15Sim(const char *Cmd)
|
|||
uid[0],uid[1],uid[2],uid[3],uid[4], uid[5], uid[6], uid[7]);
|
||||
|
||||
UsbCommand c = {CMD_SIMTAG_ISO_15693, {0, 0, 0}};
|
||||
memcpy(c.d.asBytes,uid,8);
|
||||
|
||||
SendCommand(&c);
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue