Modbus RTU Timing Calculator

Calculate Modbus RTU character time, T1.5, T3.5 silent interval, and frame transmission time from baud rate and serial format settings.

Timing calculator

Inputs

Outputs

Bits per character-
Character time-
T1.5-
T3.5-
Frame transmission time-
Frame + T3.5 total time-
Recommended timeout-

Enter Modbus RTU parameters to calculate timing values.

What is Modbus RTU timing?

Modbus RTU uses serial characters and silent intervals to separate frames. Timing depends on baud rate and the configured character format.

Character time, T1.5 and T3.5

Character time is the serial time for one full character (start bit, data bits, optional parity, and stop bits). T1.5 and T3.5 are 1.5 and 3.5 character times.

How to calculate Modbus RTU silent interval

First compute bits per character, then divide by baud rate for character time. Multiply that by 3.5 to get T3.5, which is the typical silent interval threshold.

Modbus RTU frame time examples

Baud Format Bits per char Character time T3.5 Notes
96008E1111.146 ms4.010 msCommon Modbus RTU setting
192008E1110.573 ms2.005 msCommon higher baud setting
384008N1100.260 ms0.911 msCharacter-based timing example
1152008N1100.0868 ms0.304 msHigh speed serial example

Notes for baud rates above 19200

Many implementations keep character-based timing, but some use fixed timers above 19200 bps. Always check the device stack or protocol profile used in your project.

FAQ

What is T3.5 in Modbus RTU?

T3.5 is a silent interval of 3.5 character times, commonly used to mark frame boundaries in Modbus RTU communication.

How do I calculate Modbus RTU character time?

Compute bits per character from serial format, then divide by baud rate. For example, 8E1 has 11 bits per character.

Does parity affect Modbus RTU timing?

Yes. Enabling parity adds one bit per character, so character time, T1.5, T3.5, and frame time all become slightly longer.

What timeout should I use for Modbus RTU?

A practical timeout starts from frame time plus T3.5, then adds a margin for processing and bus latency.

Related tools