mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-11-11 01:55:38 +08:00
FIX: The 14b write command (CmdHF14BWrite) now turns off antenna after call.
This commit is contained in:
parent
e3c235654f
commit
fe5b3a4424
1 changed files with 1 additions and 1 deletions
|
@ -448,7 +448,7 @@ int CmdHF14BWrite( const char *Cmd){
|
|||
else
|
||||
PrintAndLog("[%s] Write block %02X [ %s ]", (isSrix4k)?"SRIX4K":"SRI512", blockno, sprint_hex(data,4) );
|
||||
|
||||
sprintf(str, "-c -p 09 %02x %02x%02x%02x%02x", blockno, data[0], data[1], data[2], data[3]);
|
||||
sprintf(str, "-c 09 %02x %02x%02x%02x%02x", blockno, data[0], data[1], data[2], data[3]);
|
||||
|
||||
CmdHF14BCmdRaw(str);
|
||||
return 0;
|
||||
|
|
Loading…
Reference in a new issue