mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-03-03 19:43:09 +08:00
hf/lf tune - show Volt max. And use corect session support identification
This commit is contained in:
parent
7a6d72fcd4
commit
902b6c9866
1 changed files with 4 additions and 3 deletions
|
@ -657,7 +657,8 @@ void print_progress(size_t count, uint64_t max, barMode_t style) {
|
||||||
"\xe2\x96\x88",
|
"\xe2\x96\x88",
|
||||||
};
|
};
|
||||||
|
|
||||||
uint8_t mode = session.emoji_mode == EMOJI;
|
uint8_t mode = session.supports_colors;
|
||||||
|
|
||||||
const char *block[] = {"#", "\xe2\x96\x88"};
|
const char *block[] = {"#", "\xe2\x96\x88"};
|
||||||
// use a 3-byte space in emoji mode to ease computations
|
// use a 3-byte space in emoji mode to ease computations
|
||||||
const char *space[] = {" ", "\xe2\x80\x80"};
|
const char *space[] = {" ", "\xe2\x80\x80"};
|
||||||
|
@ -704,12 +705,12 @@ void print_progress(size_t count, uint64_t max, barMode_t style) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case STYLE_MIXED: {
|
case STYLE_MIXED: {
|
||||||
sprintf(buffer, "%s [ %zu mV / %3u V ]", cbar, count, (uint32_t)(count / 1000));
|
sprintf(buffer, "%s [ %zu mV / %2u V / %2u Vmax ]", cbar, count, (uint32_t)(count / 1000), (uint32_t)(max / 1000));
|
||||||
printf("\b%c[2K\r[" _YELLOW_("=")"] %s ", 27, buffer);
|
printf("\b%c[2K\r[" _YELLOW_("=")"] %s ", 27, buffer);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case STYLE_VALUE: {
|
case STYLE_VALUE: {
|
||||||
printf("[" _YELLOW_("=")"] %zu mV / %3u V \r", count, (uint32_t)(count / 1000));
|
printf("[" _YELLOW_("=")"] %zu mV / %2u V / %2u Vmax\r", count, (uint32_t)(count / 1000), (uint32_t)(max / 1000));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue