mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-14 10:37:23 -07:00
no fct call in macro, thanks @iceman1001
This commit is contained in:
parent
f8cd168498
commit
156c3a81e8
1 changed files with 2 additions and 1 deletions
|
@ -224,7 +224,8 @@ int CmdLFTune(const char *Cmd) {
|
|||
}
|
||||
break;
|
||||
case 'f': {
|
||||
divisor = LF_DIVISOR(param_get32ex(Cmd, cmdp + 1, 125, 10));
|
||||
int freq = param_get32ex(Cmd, cmdp + 1, 125, 10);
|
||||
divisor = LF_DIVISOR(freq);
|
||||
if (divisor < 19) {
|
||||
PrintAndLogEx(ERR, "freq must be between 47 and 600");
|
||||
return PM3_EINVARG;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue