modbus/web_settings.py
changeset 3733 d1acf20e8e7c
parent 3163 7cf38cd0d820
child 3743 5450dd9e9370
--- 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 = [