mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-07-16 02:03:00 -07:00
fix em410xsim help - add clock input to em410xsim
This commit is contained in:
parent
8949e04584
commit
daa4fbaeec
1 changed files with 7 additions and 6 deletions
|
@ -73,22 +73,23 @@ int CmdEM410xSim(const char *Cmd)
|
||||||
uint8_t uid[5] = {0x00};
|
uint8_t uid[5] = {0x00};
|
||||||
|
|
||||||
if (cmdp == 'h' || cmdp == 'H') {
|
if (cmdp == 'h' || cmdp == 'H') {
|
||||||
PrintAndLog("Usage: lf em4x 410xsim <UID>");
|
PrintAndLog("Usage: lf em4x em410xsim <UID> <clock>");
|
||||||
PrintAndLog("");
|
PrintAndLog("");
|
||||||
PrintAndLog(" sample: lf em4x 410xsim 0F0368568B");
|
PrintAndLog(" sample: lf em4x em410xsim 0F0368568B");
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
/* clock is 64 in EM410x tags */
|
||||||
|
int clock = 64;
|
||||||
|
|
||||||
if (param_gethex(Cmd, 0, uid, 10)) {
|
if (param_gethex(Cmd, 0, uid, 10)) {
|
||||||
PrintAndLog("UID must include 10 HEX symbols");
|
PrintAndLog("UID must include 10 HEX symbols");
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
param_getdec(Cmd,1,&clock);
|
||||||
|
|
||||||
PrintAndLog("Starting simulating UID %02X%02X%02X%02X%02X", uid[0],uid[1],uid[2],uid[3],uid[4]);
|
PrintAndLog("Starting simulating UID %02X%02X%02X%02X%02X clock: %d", uid[0],uid[1],uid[2],uid[3],uid[4],clock);
|
||||||
PrintAndLog("Press pm3-button to about simulation");
|
PrintAndLog("Press pm3-button to about simulation");
|
||||||
|
|
||||||
/* clock is 64 in EM410x tags */
|
|
||||||
int clock = 64;
|
|
||||||
|
|
||||||
/* clear our graph */
|
/* clear our graph */
|
||||||
ClearGraph(0);
|
ClearGraph(0);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue