Merge remote-tracking branch 'origin/dev' into ft_https

This commit is contained in:
proddy
2021-05-02 22:17:06 +02:00
12 changed files with 109 additions and 16 deletions

View File

@@ -567,9 +567,10 @@ void TxService::retry_tx(const uint8_t operation, const uint8_t * data, const ui
reset_retry_count(); // give up
increment_telegram_fail_count(); // another Tx fail
LOG_ERROR(F("Last Tx %s operation failed after %d retries. Ignoring request."),
LOG_ERROR(F("Last Tx %s operation failed after %d retries. Ignoring request: %s"),
(operation == Telegram::Operation::TX_WRITE) ? F("Write") : F("Read"),
MAXIMUM_TX_RETRIES);
MAXIMUM_TX_RETRIES),
telegram_last_->to_string().c_str();
return;
}