1
Support Questions / Re: MOdbusRTUCom.vb: when "DLL(MyDLLInstance).SendQueDepth > 10" driver stops
« on: September 27, 2015, 11:41:52 PM »
Thanks Archie,
I notice MaxTicks was removed,
I have swapped out the hardcoded 3000 msec for miRepsonseWait_msec in the three places its used and added :
I notice MaxTicks was removed,
I have swapped out the hardcoded 3000 msec for miRepsonseWait_msec in the three places its used and added :
Code: [Select]
Private miRepsonseWait_msec As Integer = 3000
#Region "EXTENDED PUBLIC PROPERTIES"
Public Property ResponseWait() As Integer
Get
Return miRepsonseWait_msec
End Get
Set(value As Integer)
'default = 3000 (msec)
miRepsonseWait_msec = value
End Set
End Property
#End Region
in all instance of "... .WaitOne(miRepsonseWait_msec)"