mirror of
https://github.com/esphome/esphome.git
synced 2024-11-26 12:27:13 +01:00
Fix small index compare bug in modbus
This commit is contained in:
parent
39af967433
commit
69fe18f1ef
@ -47,7 +47,7 @@ bool Modbus::parse_modbus_byte_(uint8_t byte) {
|
||||
uint8_t function_code = raw[1];
|
||||
// Byte 2: Size (with modbus rtu function code 4/3)
|
||||
// See also https://en.wikipedia.org/wiki/Modbus
|
||||
if (at == 2)
|
||||
if (at <= 2)
|
||||
return true;
|
||||
|
||||
uint8_t data_len = raw[2];
|
||||
|
Loading…
Reference in New Issue
Block a user