Chapter 2 - Sequential systems

0.0(0)
studied byStudied by 0 people
0.0(0)
full-widthCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/59

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

60 Terms

1
New cards

What is a sequential logic system?

A system where outputs depend on input and the previous state (feedback)

2
New cards

What is a D-type flip-flop?

A bistable circuit with two stable states, used for data transfer, storage, and counting

3
New cards

What are the main uses of D-type flip-flops in electronics?

Data transfer, latches, counters

4
New cards

What does the 'D' stand for in D-type flip-flop?

Data (data input terminal)

5
New cards

What does the 'Q' output do in a D-type flip-flop?

Shows the data value stored (output)

6
New cards

What does the 'Q bar' output do?

Always the opposite of Q

7
New cards

What is the 'clock' input in a flip-flop circuit?

Controls when the flip-flop samples the D input for transfer to output

8
New cards

What is meant by 'rising-edge triggered'?

Data is stored at Q only when the clock signal goes from 0 to 1

9
New cards

When does the D-type flip-flop transfer the data input to output?

Only on the rising edge of the clock pulse

10
New cards

If D = 1 when the clock rises, what happens to Q?

Q becomes 1

11
New cards

How long does Q stay at that value?

Indefinitely, until reset or another clock pulse occurs

12
New cards

What are 'Set' (S) and 'Reset' (R) inputs for?

S sets Q to 1, R resets Q to 0, regardless of other inputs

13
New cards

In most GCSE circuits, which input is shown: Set or Reset?

Only Reset is usually included/shown

14
New cards

What does it mean to 'latch' a value using a D-type flip-flop?

The state (high or low) is stored and held even after inputs change, until reset

15
New cards

How is a D-type used as a memory latch?

D is held at 1; a clock pulse stores ‘1’ at Q; Q stays at 1 until reset

16
New cards

How do you reset a D-type latch in a circuit?

Activate (briefly connect) the reset input (logic 1 if active high)

17
New cards

What is a practical use for a D-type latch?

Alarm that remains on after triggered until reset (e.g., safe or burglar alarm)

18
New cards

What is a timing diagram?

Graph showing how logic levels at inputs and outputs change with time

19
New cards

How do you show D and clock pulses on a timing diagram?

Draw D and clock as square waveforms; mark outputs accordingly as signals change

20
New cards

In a D-type, what does the output Q do in response to a rising clock edge?

Takes the value of D at that moment

21
New cards

What is a binary counter?

Circuit that counts in binary, often using flip-flops

22
New cards

How do you build a 1-bit binary up-counter with D-type?

Feed Q bar to D; output toggles each clock pulse, dividing frequency by two

23
New cards

How do you build a 2-bit binary up-counter?

Connect two D-types: 1st gives LSB; its Q output clocks 2nd for MSB

24
New cards

What is frequency division in counters?

Output of counter changes at fractions (half, quarter…) of input clock frequency

25
New cards

What do 'LSB' and 'MSB' stand for?

Least Significant Bit (changes most often); Most Significant Bit (changes least)

26
New cards

What are typical outputs of a 2-bit binary counter (sequence)?

00, 01, 10, 11, then repeat

27
New cards

How do you reset a binary counter at a specific number?

Use combinational logic (AND/NAND gate) taken from counter outputs to trigger reset

28
New cards

What happens to a binary counter when reset is activated?

All outputs go to zero

29
New cards

What is the function of a counter integrated circuit (IC)?

Counts pulses and outputs binary or BCD sequence, often with built-in reset

30
New cards

What is a 4-bit counter’s maximum count?

15 (binary 1111)

31
New cards

How do you connect the reset in a 4017 decade counter?

Connect reset input to active logic (see datasheet); sequence ends when required output is reached

32
New cards

How does a 4017 decade counter work?

10 outputs; each output goes high sequentially with each clock pulse; after 10, resets to start again

33
New cards

What is a ‘decade counter’?

Counter that counts from 0 to 9, then resets

34
New cards

What is a practical use of a 4017 counter?

Sequencers like light chasers, dice, display circuits

35
New cards

How do you design a sequencer for a particular pattern length?

Connect required output (“end” step) to the reset input

36
New cards

What is a BCD counter?

Binary Coded Decimal; counts from 0–9 then resets (BCD code for decimal display)

37
New cards

What is a 7-segment display?

Display device using seven LEDs; can show digits 0–9 and some letters

38
New cards

How is a 7-segment display wired?

Each LED segment controlled separately; patterns form numbers/letters

39
New cards

What is the difference between common anode and common cathode 7-segment displays?

Common anode: all anodes to +V; common cathode: all cathodes to 0V

40
New cards

What does a decoder/driver IC do for a 7-segment display?

Converts BCD (or binary) from counter into seven segment signals; may boost current

41
New cards

Why are current-limiting resistors used with 7-segment displays?

Prevent LED burnout; set safe brightness

42
New cards

How do you use a BCD counter and 7-segment driver for a single-digit display?

BCD counter outputs to decoder/driver IC, which connects to display

43
New cards

How is a two-digit 7-segment display counter constructed?

Two BCD counters and two decoder/drivers used together; higher BCD counts tens, lower counts units

44
New cards

What’s needed in the logic to display special letters on 7-segment display?

Custom logic circuits; decoder/driver IC can usually only display 0–9

45
New cards

What is a state diagram?

Diagram showing how a logic system changes states (outputs) with each clock pulse

46
New cards

How can you show system behaviour using a truth table?

List all input combinations, draw corresponding system outputs

47
New cards

How can you automate a traffic light sequence using a counter?

Use a counter’s outputs as inputs to combinational logic that switches lights

48
New cards

How can you automate a ‘light chaser’ (LED sequence) system?

4017 counter; each output lights a different LED (or pattern) in sequence, reset after desired steps

49
New cards

What does EN (enable) do in 4017 counter?

When high, holds output state (“freezes” sequence)

50
New cards

What does R (reset) do in counters?

Instantly returns counter to start (all outputs zero or first state)

51
New cards

How do you change the speed of a sequencer?

Adjust RC values in clock pulse (astable) circuit, or use variable-frequency generator

52
New cards

What is BCD?

Binary Coded Decimal: 4-bit code for each decimal digit (0000 = 0, 1001 = 9)

53
New cards

How does a binary counter differ from a BCD counter?

Binary counts 0–15 (4-bit), BCD only 0–9 before reset/repeat

54
New cards

How would you count events with a display users can read?

Use BCD counter, decoder/driver IC, and 7-segment display

55
New cards

How do you display 3 on a 7-segment?

Illuminate segments a, b, c, d, g

56
New cards

How do you make a dice or heads/tails electronic game with a decade counter?

Use outputs to indicate numbers; reset gives required max number (6); ‘freeze’ EN to stop at random

57
New cards

What does “toggle” mean in flip-flops/counters?

Change state from 0 to 1 or 1 to 0 with each clock pulse

58
New cards

What’s a possible real application of a sequential logic system?

Car park entry/exit counter, traffic light, score board, timer

59
New cards

What are the advantages of digital counters over mechanical?

Faster, no wear, can directly control electronics/displays, easier logic operations

60
New cards