Clock Generation

The TWI supports several transmission modes with different frequency limitations: Write the Host Baud Rate (TWIn.MBAUD) register to a value that will result in a TWI bus clock frequency equal to, or less than, those frequency limits, depending on the transmission mode.

The low (tLOW) and high (tHIGH) times are determined by the Host Baud Rate (TWIn.MBAUD) register, while the rise (tR) and fall (tOF) times are determined by the bus topology.

Figure 1. SCL Timing

Properties of the SCL Clock

The SCL frequency is given by:
Figure 2. SCL Frequency
fSCL=1tLOW+tHIGH+tOF+tR[Hz]

The SCL clock is designed to have a 50/50 duty cycle, where the low period of the duty cycle comprises of tOF and tLOW. tHIGH will not start until a high state of SCL has been detected. The BAUD bit field in the TWIn.MBAUD register and the SCL frequency are related by the following formula:

Figure 3. SCL Frequency
fSCL=fCLK_PER10+2×BAUD+fCLK_PER×tR
Figure 3 can be transformed to express BAUD:
Figure 4. BAUD
BAUD=fCLK_PER2×fSCL(5+fCLK_PER×tR2)

Calculation of the BAUD Value

To ensure operation within the specifications of the desired speed mode (Sm, Fm, Fm+), follow these steps:
  1. 1.Calculate a value for the BAUD bit field using Figure 4.
  2. 2.Calculate tLOW using the BAUD value from step 1:

    Figure 5. tLOW
    tLOW=BAUD+5fCLK_PERtOF
  3. 3.Check if tLOW from Figure 5 is above the specified minimum of the desired mode (tLOW_Sm = 4700 ns, tLOW_Fm = 1300 ns, tLOW_Fm+ = 500 ns).
    • If the calculated tLOW is above the limit, use the BAUD value from Figure 4
    • If the limit is not met, calculate a new BAUD value using Figure 6 below, where tLOW_mode is either tLOW_Sm, tLOW_Fm, or tLOW_Fm+ from the mode specifications:

      Figure 6. BAUD
      BAUD=fCLK_PER×(tLOW_mode+tOF)5