mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-03-22 21:17:31 +08:00
chg: textual changes.
This commit is contained in:
parent
564c9ae2b6
commit
f9eeab99a4
1 changed files with 4 additions and 5 deletions
|
@ -1019,7 +1019,7 @@ int CmdLegicRestore(const char *Cmd){
|
||||||
}
|
}
|
||||||
fclose(f);
|
fclose(f);
|
||||||
|
|
||||||
PrintAndLog("Restoring %s to card", filename);
|
PrintAndLog("Restoring to card");
|
||||||
|
|
||||||
// transfer to device
|
// transfer to device
|
||||||
size_t len = 0;
|
size_t len = 0;
|
||||||
|
@ -1031,11 +1031,10 @@ int CmdLegicRestore(const char *Cmd){
|
||||||
c.arg[0] = i; // offset
|
c.arg[0] = i; // offset
|
||||||
c.arg[1] = len; // number of bytes
|
c.arg[1] = len; // number of bytes
|
||||||
memcpy(c.d.asBytes, data+i, len);
|
memcpy(c.d.asBytes, data+i, len);
|
||||||
PrintAndLog("offset %d | chunk %d | numofbytes %d", i, len, numofbytes);
|
|
||||||
clearCommandBuffer();
|
clearCommandBuffer();
|
||||||
SendCommand(&c);
|
SendCommand(&c);
|
||||||
|
|
||||||
if (!WaitForResponseTimeout(CMD_ACK, &resp, 3000)) {
|
if (!WaitForResponseTimeout(CMD_ACK, &resp, 4000)) {
|
||||||
PrintAndLog("command execution time out");
|
PrintAndLog("command execution time out");
|
||||||
free(data);
|
free(data);
|
||||||
return 1;
|
return 1;
|
||||||
|
@ -1046,11 +1045,11 @@ int CmdLegicRestore(const char *Cmd){
|
||||||
free(data);
|
free(data);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
PrintAndLog("Wrote chunk %d - %d", i, len);
|
PrintAndLog("Wrote chunk [offset %d | len %d | total %d", i, len, i+len);
|
||||||
}
|
}
|
||||||
|
|
||||||
free(data);
|
free(data);
|
||||||
PrintAndLog("\nWrote %d bytes from file: %s to card", numofbytes, filename);
|
PrintAndLog("\nWrote %d bytes to card from file %s", numofbytes, filename);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue