mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-08 00:39:50 +03:00
always show Rx CRC errors to ERROR log
This commit is contained in:
@@ -136,15 +136,11 @@ void RxService::add(uint8_t * data, uint8_t length) {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// validate the CRC
|
// validate the CRC. if it fails then increment the number of corrupt/incomplete telegrams and only report to console/syslog
|
||||||
// if it fails then increment the number of corrupt/incomplete telegrams and only report to console/syslog
|
|
||||||
// if watch is running
|
|
||||||
uint8_t crc = calculate_crc(data, length - 1);
|
uint8_t crc = calculate_crc(data, length - 1);
|
||||||
if (data[length - 1] != crc) {
|
if (data[length - 1] != crc) {
|
||||||
increment_telegram_error_count();
|
increment_telegram_error_count();
|
||||||
if (EMSESP::watch() != EMSESP::Watch::WATCH_OFF) {
|
LOG_ERROR(F("Rx: %s (CRC %02X != %02X)"), Helpers::data_to_hex(data, length).c_str(), data[length - 1], crc);
|
||||||
LOG_ERROR(F("Rx: %s (CRC %02X != %02X)"), Helpers::data_to_hex(data, length).c_str(), data[length - 1], crc);
|
|
||||||
}
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -195,7 +191,7 @@ void RxService::add(uint8_t * data, uint8_t length) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#ifdef EMSESP_DEBUG
|
#ifdef EMSESP_DEBUG
|
||||||
LOG_DEBUG(F("[DEBUG] New Rx [#%d] telegram, message length %d"), rx_telegram_id_, message_length);
|
LOG_DEBUG(F("[DEBUG] New Rx telegram, message length %d"), message_length);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// if we don't have a type_id exit,
|
// if we don't have a type_id exit,
|
||||||
|
|||||||
Reference in New Issue
Block a user