1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-24 16:55:20 +03:00

Attempt to fix the progress bar issue on Companion Read Firmware function on Windows, dfu-util 0.7 (DFU mode)

This commit is contained in:
Bertrand Songis 2020-06-12 17:13:45 +02:00
parent 95a2990c5d
commit a22bcd01f7
No known key found for this signature in database
GPG key ID: F189F79290FEC50F

View file

@ -161,7 +161,7 @@ void FlashProcess::analyseStandardOutput(const QString & text)
progress->setValue(pos);
}
else if (currStdoutLine.startsWith("[") && progress->getText().contains("bytes_per_hash=2048")) {
int pos = (currStdoutLine.lastIndexOf("#") - 1) * 2048 / (2 * 1024 * 1024); // TODO depends on bin size
int pos = (currStdoutLine.lastIndexOf("#") - 1) * 2048 * 100 / (2 * 1024 * 1024); // TODO depends on bin size
progress->setValue(pos);
}
}