You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a question about the RTU framing. Which file should I look at to modify the 1.5 and 3.5 chars of inter-frame delay time? I was expecting to see in Transport.js or RtuTransport.js, but it was not there.
The text was updated successfully, but these errors were encountered:
It's exposed in the RtuTransport as the eofTimeout option - a number of milliseconds after the last received byte after which end of frame is assumed. It's Node.js so you have to keep in mind that setTimeout(() => {}, 1) might trigger after 1ms or 1s.
Yes, I understand completely that it would not be able to strictly follow the delay timing requirement by Modbus spec, but I was curious about where to look for it in case I need to modify it. Let me look at the eofTimeout.
I have a question about the RTU framing. Which file should I look at to modify the 1.5 and 3.5 chars of inter-frame delay time? I was expecting to see in Transport.js or RtuTransport.js, but it was not there.
The text was updated successfully, but these errors were encountered: