This commit is contained in:
iceman1001 2020-06-26 00:43:56 +02:00
commit f4c91bc3aa
2 changed files with 2 additions and 2 deletions

View file

@ -231,7 +231,7 @@ int CmdHFTune(const char *Cmd) {
} }
uint16_t volt = resp.data.asDwords[0] & 0xFFFF; uint16_t volt = resp.data.asDwords[0] & 0xFFFF;
PrintAndLogEx(INPLACE, "%u mV / %2u V", volt, (uint16_t)(volt / 1000)); PrintAndLogEx(INPLACE, " %u mV / %2u V", volt, (uint16_t)(volt / 1000));
} }
mode[0] = 3; mode[0] = 3;

View file

@ -286,7 +286,7 @@ static int CmdLFTune(const char *Cmd) {
} }
uint32_t volt = resp.data.asDwords[0]; uint32_t volt = resp.data.asDwords[0];
PrintAndLogEx(INPLACE, "%u mV / %3u V", volt, (uint32_t)(volt / 1000)); PrintAndLogEx(INPLACE, " %u mV / %3u V", volt, (uint32_t)(volt / 1000));
} }
params[0] = 3; params[0] = 3;