mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-02-12 10:16:52 +08: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)))
|
||||
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));
|
||||
}
|
||||
mode[0] = 3;
|
||||
|
|
Loading…
Reference in a new issue