mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-02-24 23:54:42 +08:00
put back viking clone bug fix
forgot i added this on a different computer recently - forgot to merge it in...
This commit is contained in:
parent
38d618baa9
commit
776f7e6160
1 changed files with 2 additions and 2 deletions
|
@ -74,8 +74,8 @@ int CmdVikingClone(const char *Cmd) {
|
|||
Q5 = true;
|
||||
|
||||
rawID = getVikingBits(id);
|
||||
|
||||
UsbCommand c = {CMD_VIKING_CLONE_TAG,{rawID >> 32, rawID & 0xFFFF, Q5}};
|
||||
PrintAndLog("Cloning - ID: %08X, Raw: %08X%08X",id,(uint32_t)(rawID >> 32),(uint32_t) (rawID & 0xFFFFFFFF));
|
||||
UsbCommand c = {CMD_VIKING_CLONE_TAG,{rawID >> 32, rawID & 0xFFFFFFFF, Q5}};
|
||||
clearCommandBuffer();
|
||||
SendCommand(&c);
|
||||
//check for ACK
|
||||
|
|
Loading…
Reference in a new issue