Understanding Counting of a Flip Flop Part-2

Duration: 4 min

This video lesson is available to enrolled students.

Enroll to watch — ISRO Scientist/Engineer 'SC'

AI Summary

An AI-generated summary of this video lecture.

This educational video provides a step-by-step tutorial on designing a synchronous counter using T flip-flops for a specific counting sequence: 0 to 1 to 2 to 3 and back to 0. The instructor begins by establishing the state table, mapping present states to next states. He then utilizes the excitation table for T flip-flops to determine the necessary input conditions ($T_1$ and $T_0$) for each state transition. The lesson concludes with the simplification of these input conditions using Karnaugh maps (K-maps) to derive the final Boolean expressions and the corresponding logic circuit diagram.

Chapters

  1. 0:00 2:00 00:00-02:00

    The instructor introduces the problem statement displayed on the screen: 'Design a synchronous counter for sequence: 0 -> 1 -> 2 -> 3 -> 0, using T flip flop.' He sets up a state table with columns for Present State ($Q_{1p}, Q_{0p}$) and Next State ($Q_{1N}, Q_{0N}$). He systematically fills the table based on the binary sequence: 00 transitions to 01, 01 transitions to 10, 10 transitions to 11, and 11 transitions back to 00. He then draws two T flip-flops on the whiteboard, labeling them $T_1$ and $T_0$, and begins explaining the excitation requirements. He notes that for a T flip-flop, if the present state equals the next state, the input T is 0; if they differ, T is 1. He starts populating the excitation columns $T_1$ and $T_0$ based on these rules for each row of the state table.

  2. 2:00 4:23 02:00-04:23

    The instructor proceeds to simplify the logic for the T inputs using Karnaugh maps. He draws two separate 2-variable K-maps for $T_1$ and $T_0$. For $T_1$, he fills the map cells with the values derived from the excitation table: 0 for state 00, 1 for state 01, 0 for state 10, and 1 for state 11. He groups the 1s to derive the simplified expression $T_1 = Q_{0p}$. For $T_0$, he fills the map with 1s in all four cells because the least significant bit toggles in every step of the sequence. This leads to the constant expression $T_0 = 1$. Finally, he sketches the final circuit diagram, connecting the $T_0$ input to a logic high (SV) and connecting the $T_1$ input to the output $Q_0$ of the first flip-flop, completing the design.

The video effectively guides students through the complete design process of a synchronous counter. It starts with the fundamental step of defining the state transitions in a table, which is crucial for understanding the counter's behavior. The instructor then bridges the gap between state transitions and hardware requirements by applying the T flip-flop excitation table. This logical deduction is essential for determining the combinational logic needed. The use of K-maps demonstrates the standard method for minimizing logic expressions, ensuring an efficient circuit design. The final circuit diagram ties all theoretical steps together, showing how the simplified Boolean expressions translate into physical connections between flip-flops. This progression from abstract sequence to concrete circuit is a standard and vital workflow in digital logic design.