FIX: maybe I should actually send the uid bytes with the command request....

This commit is contained in:
iceman1001 2014-10-30 14:29:31 +01:00
parent 3649b640e6
commit 5ea2c88515

View file

@ -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;
}