minor changes to error messages

This commit is contained in:
proddy
2020-07-08 19:15:12 +02:00
parent ca130576fd
commit 1477e816e7
3 changed files with 40 additions and 38 deletions

View File

@@ -139,7 +139,7 @@ uint8_t EMSESP::bus_status() {
}
// Tx Failure rate > 5%
if (((txservice_.telegram_fail_count() * 100) / total_sent) >= 5) {
if (((txservice_.telegram_fail_count() * 100) / total_sent) > 5) {
return BUS_STATUS_TX_ERRORS;
}