Open In App

Synchronous Controlled Counter

In this article, we will discuss the overview of the Synchronous controlled counter and will discuss its circuit diagram, circuit excitation table, timing diagram in detail. Let’s discuss it one by one.

Overview :
Toggle or D-type flip-flops can be used to make synchronous counters, and It is easy to design than asynchronous counters. Due to the clock input of flip-flops are all clocked together and with the same clock signal at the same time, that’s why it is called synchronous counters. It is also called parallel counters as the clock is fed in parallel to all flip-flops.



Prerequisite – 
Design for the synchronous counter and the following pre-requisites as follows.

Example : 
Consider a counter that can count mod 4 or mod 8 is decided by mode control input (say S). If S= 0, then it will work as mod 4 counter, if S=1 it will perform down counting. 



Circuit excitation table :
It shows the present state of the FF and the next state after the clock pulse applied and the input value. Here T FF is used. So the value of T(toggle) input of FF is 1 only if the corresponding state output value changed from 0 to 1 or 1 to 0. Otherwise, it remains the same. The below table is according to the required counting sequence.

Q  - means Present state 
Q* - means next state.

Here we are finding out the minimal boolean expression for input variable for 3 Flip flops using K map.  

Circuit Diagram :
Here the circuit is implemented for expressions that we get already. The circuit output sequence is the same as shown in the state diagram.

Timing diagram :
The sequence of the counters can be verified from the timing diagram. If the counter is reset and the control input S is 0 then it will follow the sequence of mod– 4 i.e. it will count 000, 001, 010, 011 and repeats. If the counter is reset and the control input S is 1, then the counter will count the sequence 000, 001, 010, 011, 100, 101, 110, 111, and repeats.

Case-1
When S= 0, after 4th -ve edge triggered clock pulse.

Case-2
When S=1, after 4th -ve edge-triggered clock pulse.

The timing diagram for mod-4 or mod-8 counter

Explanation
Here the -Ve edge triggering is used for toggling purposes.

Article Tags :