From b0323820119fb30e2e5a35cabae62bb7ab01fa59 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krzysztof=20Chru=C5=9Bci=C5=84ski?= Date: Mon, 13 Nov 2023 09:47:24 +0100 Subject: [PATCH] modbus: Add dependency to UART runtime configuration MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Force enabling of the UART runtime configuration for modbus serial. Signed-off-by: Krzysztof Chruściński --- subsys/modbus/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/subsys/modbus/Kconfig b/subsys/modbus/Kconfig index 614afdd8341..38c7d761c07 100644 --- a/subsys/modbus/Kconfig +++ b/subsys/modbus/Kconfig @@ -44,6 +44,7 @@ config MODBUS_SERIAL default y depends on SERIAL && SERIAL_HAS_DRIVER depends on DT_HAS_ZEPHYR_MODBUS_SERIAL_ENABLED + select UART_USE_RUNTIME_CONFIGURE help Enable Modbus over serial line support.