From 70b44f731826cab7448947037eab34b70d538100 Mon Sep 17 00:00:00 2001 From: Sebastian Muszynski Date: Tue, 14 Mar 2023 08:52:54 +0100 Subject: [PATCH] Improve spelling --- components/seplos_modbus/seplos_modbus.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/seplos_modbus/seplos_modbus.cpp b/components/seplos_modbus/seplos_modbus.cpp index 433040e..0d1fefd 100644 --- a/components/seplos_modbus/seplos_modbus.cpp +++ b/components/seplos_modbus/seplos_modbus.cpp @@ -98,7 +98,7 @@ bool SeplosModbus::parse_seplos_modbus_byte_(uint8_t byte) { uint16_t remote_crc = uint16_t(ascii_hex_to_byte(raw[at - 4], raw[at - 3])) << 8 | (uint16_t(ascii_hex_to_byte(raw[at - 2], raw[at - 1])) << 0); if (computed_crc != remote_crc) { - ESP_LOGW(TAG, "CRC Check failed! 0x%04X != 0x%04X", computed_crc, remote_crc); + ESP_LOGW(TAG, "CRC check failed! 0x%04X != 0x%04X", computed_crc, remote_crc); return false; }