make style

This commit is contained in:
Philippe Teuwen
2020-12-23 19:51:10 +01:00
parent 7bc3067fa4
commit 8d4acbe3a6
13 changed files with 78 additions and 79 deletions

View File

@@ -328,11 +328,11 @@ static int CmdLFTune(const char *Cmd) {
uint32_t volt = resp.data.asDwords[0];
if (first) {
max = (volt * 1.03);
max = (volt * 1.03);
first = false;
}
if ( volt > max) {
max = (volt * 1.03);
if (volt > max) {
max = (volt * 1.03);
}
print_progress(volt, max, style);
}