mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-19 21:03:48 -07:00
lf tune: remove 16b mask (thanks @iceman1001)
This commit is contained in:
parent
6ffae0e156
commit
878e394cde
1 changed files with 1 additions and 1 deletions
|
@ -230,7 +230,7 @@ int CmdLFTune(const char *Cmd) {
|
||||||
}
|
}
|
||||||
if ((resp.status == PM3_EOPABORTED) || (resp.length != sizeof(uint32_t)))
|
if ((resp.status == PM3_EOPABORTED) || (resp.length != sizeof(uint32_t)))
|
||||||
break;
|
break;
|
||||||
uint32_t volt = resp.data.asDwords[0] & 0xFFFF;
|
uint32_t volt = resp.data.asDwords[0];
|
||||||
PrintAndLogEx(INPLACE, "%u mV / %5u V", volt, (uint32_t)(volt / 1000));
|
PrintAndLogEx(INPLACE, "%u mV / %5u V", volt, (uint32_t)(volt / 1000));
|
||||||
}
|
}
|
||||||
mode[0] = 3;
|
mode[0] = 3;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue