diff -r bb1eff4091ab -r d1acf20e8e7c modbus/web_settings.py --- a/modbus/web_settings.py Wed Sep 28 09:19:07 2022 +0200 +++ b/modbus/web_settings.py Sun Feb 19 08:37:27 2023 +0000 @@ -149,7 +149,8 @@ # annotate.Integer, ...) ("host" , _("Remote IP Address") , ctypes.c_char_p, MB_StrippedString), ("port" , _("Remote Port Number") , ctypes.c_char_p, MB_StrippedString), - ("comm_period" , _("Invocation Rate (ms)") , ctypes.c_ulonglong, annotate.Integer ) + ("comm_period" , _("Invocation Rate (ms)") , ctypes.c_ulonglong, annotate.Integer ), + ("req_delay" , _("Request Delay (ms)") , ctypes.c_ulonglong, annotate.Integer ) ] RTUclient_parameters = [ @@ -161,7 +162,8 @@ ("baud" , _("Baud Rate") , ctypes.c_int, MB_Baud ), ("parity" , _("Parity") , ctypes.c_int, MB_Parity ), ("stop_bits" , _("Stop Bits") , ctypes.c_int, MB_StopBits ), - ("comm_period" , _("Invocation Rate (ms)") , ctypes.c_ulonglong, annotate.Integer) + ("comm_period" , _("Invocation Rate (ms)") , ctypes.c_ulonglong, annotate.Integer), + ("req_delay" , _("Request Delay (ms)") , ctypes.c_ulonglong, annotate.Integer) ] TCPserver_parameters = [