From 24087f562222a177ee11a05c764130992f4ce90c Mon Sep 17 00:00:00 2001 From: Eduard Iten Date: Tue, 1 Jul 2025 21:55:01 +0200 Subject: [PATCH] fix(slave_node): Increase Modbus buffer size - Set CONFIG_MODBUS_BUFFER_SIZE to 256 to ensure the slave can handle larger data packets sent by the client during firmware updates. --- software/apps/slave_node/prj.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/software/apps/slave_node/prj.conf b/software/apps/slave_node/prj.conf index 5eb038a..e141e40 100644 --- a/software/apps/slave_node/prj.conf +++ b/software/apps/slave_node/prj.conf @@ -27,3 +27,4 @@ CONFIG_SETTINGS_LOG_LEVEL_DBG=y CONFIG_UART_INTERRUPT_DRIVEN=y CONFIG_MODBUS=y CONFIG_MODBUS_ROLE_SERVER=y +CONFIG_MODBUS_BUFFER_SIZE=256