EASA Mod 5 BK 1 Digital Tech
EASA Mod 5 BK 1 Digital Tech
EASA Mod 5 BK 1 Digital Tech
CATEGORY B1 B2
DIGITAL TECHNIQUES
Licence By Post
Licence By Post © Copyright B EASA 66 5.2 5.3 5.5 5.8 5.9 ISSUE 06 0612
© Licence By Post
No part of this study book may be re-produced or distributed in any form or by any means, or
stored in a data base or retrieval system in whole or in part without prior written permission
from Licence By Post.
Books in the LBP series are regularly up-dated/re-written to keep pace with the changing
technology, changing examination requirements and changing legal requirements.
AUTHORITY
You should also follow the requirements of your national regulatory authority (the
CAA in the UK) and laid down company policy as regards local procedures, recording,
report writing, documentation etc.
For health and safety in the workplace you should follow the regulations/guidelines
as specified by the equipment manufacturer, your company, national safety
authorities and national governments.
LBP
140 Narbeth Drive
Aylesbury
Bucks
HP20 1QA UK
Page
Numbering systems 1
The Decimal system 1
The Binary system 2
The Octal system 8
The Hexadecimal system 11
The Binary coded decimal system 14
Mathematical functions on Binary numbers 15
Digital circuits 18
Logic gates 19
Electronic gate operation 25
De Morgan’s rules 34
Adders 35
Comparators 37
Logic circuits – examples 39
Sequential/combinational logic 42
Flip-flops 42
The SR flip-flop 43
Clocks 44
The D type SR flip-flop 45
The JK flip-flop 45
Counters 46
Shift registers 48
Encoders and decoders 49
Encoders 49
Analogue to digital converters 51
The digital ramp converter 51
The successive approximation ADC 52
The integrated duel slope converter 53
The charge balancing converter 54
Terminology 55
Decoders 56
The digital to analogue converter 56
The R-2R type D to A converter 58
Multiplexers and demultiplexers 59
Passenger entertainment system 63
Assignment 64
Solutions to activities 64
HOW TO TACKLE THIS BOOK
Basically, very slowly! Make sure you understand each part before going onto
the next. It is important you can recognise logic gates, be able to draw relevant
truth tables and be able to interpret aircraft schematic diagrams in relation to
logic circuits.
This series of study books for module 5 is written for the B1/B2 engineer. The
A line mechanic should study our books for module 5 specifically written to
that level. This book is written to the B2 level for all subjects which is a
slightly higher level than the B1 requirement.
The B2 engineer needs to study this book (as well as the other books in this
module) in its/their entirety with all subjects to level 2 except for Electronic
Instrument Systems which should be studied to level 3.
For the B1.1 and B1.3 (jet engine aircraft) engineer some subjects need not be
studied at all and some subjects need to be studied at a level one below that of
the B2. For the B1.2 and B1.4 engineer (piston engine aircraft) none of this
book is applicable.
Any references to scientists are for interest only and details need not be
committed to memory.
IMPORTANT
The B1 engineer should check the syllabus whilst studying these books to
ensure that he/she studies only those subjects listed. A copy of the 2011
syllabus is included as an appendix to this book.
We have also included the definitions of the difficulty levels. Not easy for the
individual to interpret and sometimes the CAA (in their examinations) tend to
interpret them liberally anyway.
NUMBERING SYSTEMS
= 72306
= 10 + 9 + . 5 + . 02 + . 006
= 19.526
Note that 100 = 1. In fact any number to the power of nought equals 1.
Proof. Using as an example the number 3. That is 30 = 1.
1 = 9 = 32 = 32 x 3-2 = 32+(-2) = 30
9 32
Note that 3 was used because it is an easy number to show that any number
to the power of nought is equal to 1.
It can be seen that the decimal system is based on successive powers of 10,
the number with the smallest value (100) is known as the Least Significant
Digit (LSD) and the number with the highest value (104 in the example above)
is known as the Most Significant Digit (MSD).
-1-
The disadvantage of the decimal system for use in a digital computer is that
the circuits which would be used, using transistors, would have to have 10
discrete levels of collector current. For example 0mA (0 milliamps) would equal
0, 1mA would equal 1, 2mA = 2, 3mA = 3 etc. Such a system would be
extremely difficult to operate because:
Any errors from the above may cause an error increment of one or two, giving
an incorrect output (eg instead of 8 [correct reading] for example it might be 7
or 9).
Where accuracy and speed are important it would be better to use a system
that has just two states. Reliance is higher because the circuit is either HIGH
(high voltage level) or LOW (low voltage level), or ON or OFF.
So the system that is the basis of today’s digital processing is the ‘two states’
BINARY SYSTEM.
This has a base or radix of 2. As in the decimal system we can represent any
number in successive powers of 2.
For example:
27 = 24 + 23 + 21 + 20
= 16 + 8 + 2 + 1
expanded further:
= 1 x 24 + 1 x 23 + 0 x 22 + 1 x 21 + 1 x 20
↓ ↓ ↓ ↓ ↓
1 1 0 1 1
-2-
To avoid confusion between systems with different radix this would be written
as 110112 to identify it as a binary number.
Example. Change 17.75 decimal to binary. Take the 17 first then add on the
.75.
expanded gives
1 x 24 + 0 x 23 + 0 x 22 + 0 x 21 + 1 x 20 + 1 x 2-1 + 1 x 2-2
↓ ↓ ↓ ↓ ↓ ↓ ↓
1 0 0 0 1 . 1 1
So 17.75 = 10001.112
The table below shows the relationship between Binary and Decimal numbers
up to Decimal 21. It could be continued indefinitely.
blank
-3-
Decimal 5-bit Binary Decimal 5-bit Binary No
Number Number (word) Number Number (word)
24 23 22 21 20 24 23 22 21 20
0 0 0 0 0 0 11 0 1 0 1 1
1 0 0 0 0 1 12 0 1 1 0 0
2 0 0 0 1 0 13 0 1 1 0 1
3 0 0 0 1 1 14 0 1 1 1 0
4 0 0 1 0 0 15 0 1 1 1 1
5 0 0 1 0 1 16 1 0 0 0 0
6 0 0 1 1 0 17 1 0 0 0 1
7 0 0 1 1 1 18 1 0 0 1 0
8 0 1 0 0 0 19 1 0 0 1 1
9 0 1 0 0 1 20 1 0 1 0 0
10 0 1 0 1 0 21 1 0 1 0 1
From the table it can be seen that the binary number is longer than the
decimal number but because of the fast switching speeds of modern circuits
this does not present a problem. Also because of the reliability of the two-state
system, the practical advantages gained by using binary numbers are
considerable.
This method is fine as far as it goes, but when larger numbers are involved it
becomes cumbersome. To convert from decimal to binary, the successive
division by two method may be employed (see below), the ‘remainder’ of any
division (which must be either 0 or 1) is then recorded successively in a
separate column. The following examples show the method.
-4-
Example a Example b
2 796 2 217
2 199 ’’ 0 2 54 ’’ 0
2 99 ’’ 1 2 27 ’’ 0
2 49 ’’ 1 2 13 ’’ 1
2 24 ’’ 1 2 6 ’’ 1
2 12 ’’ 0 2 3 ’’ 0
2 6 ’’ 0 2 1 ’’ 1
2 3 ’’ 0 2 0 ’’ 1
2 1 ’’ 1 READ UP READ UP
to obtain to obtain
0 ’’ 1 binary binary
equivalent form
1100011100 11011001
So for 796. First divide by 2. The answer is 398 with remainder 0. The divide
398 by 2. The answer is 199 with remainder 0. Divide 199 by 2. The answer is
99 with remainder 1. Continue this until all divisions are complete. Read UP
the remainder column to give the binary number 1100011100.
(a) 846
(b) 317
(c) 147
You should practice converting the smaller numbers using powers of 2 which
is a quicker method.
Example
-5-
Write down the successive powers of 2:
So 32 16 8 4 2 1 equals:
1 0 1 1 0 1
ACTIVITY 3 So the idea is to write down the powers of 2 and put 1’s in the
powers you need to make up the number. Try these:
(a) 47
(b) 32
(c) 21
1 230 x 2
READ DOWN
And write from left to right 0 460 x 2
to give binary fraction:
0 920 x 2
0.1001112
1 840 x 2
1 680 x 2
-6-
Conversion of a Decimal Fraction to a Binary Fraction
The next example shows how to convert a mixed decimal number to binary.
Note that it must be treated in two parts as shown.
Example
Convert 14.625 to binary
WHOLE FRACTION
2 14 0 . 625 x 2
2 7 remainder 0 1 250 x 2
READ
2 3 ’’ 1 UP READ 0 500 x 2
DOWN
2 1 ’’ 1 1 000
0 ’’ 1
The easiest way to convert Binary to Decimal is to write the powers of 2 above
each bit position starting from the right and working towards the left. Then by
inspection calculate the Decimal number. For example, take the binary
number 1011012 and convert to decimal.
32 16 8 4 2 1 ← the powers
1 0 1 1 0 1
-7-
Examples:
Remember to write the powers of 2 above each bit position and the calculate
the Denary number.
64 32 16 8 4 2 1
1 1 0 1 1 0 1
So 64 + 32 + 8 + 4 + 1 = 10910
8 4 2 1 .5
1 1 0 1 .1
= 13 .510
64 32 16 8 4 2 1 .5 .25
1 0 0 1 1 1 0 .1 1
= 64 + 8 + 4 + 2 + .5 + .25
= 78.7510
In the binary system the number of bits in a word can be quite lengthy and
problems can occur such as the possibility of an error in manipulating so
many digits.
-8-
The system uses the base or radix 8, this means to convert from decimal to
octal we divide by 8 and record the remainders as before and read UP to get
the octal number.
To convert this number to binary split each octal number into it’s three figure
binary numbers and join together.
Example 1
8 1 remainder 4 UP
1 4 3 4
0 remainder 1 001 100 011 100
To convert from binary to octal, start from the right and group into threes, if
the final group does not have three bits then add noughts to make up to the
three.
Example 2
1 01 0 1 0 0
-9-
Example 3
01000002 to Octal
0 1 0 0 0 0 0
0 4 0
01000002 = 408
To convert from 0ctal to Binary (just a recap) the reverse procedure is used.
1 2 6 3
12638 = 10101100112
Example
0.90625 x 2 = 1.81250 1
0.8125 x 2 = 1.6250 1
0.625 x 2 = 1.250 1 READ
0.25 x 2 = 0.5 0 DOWN
0.5 x 2 = 1.0 1
0.9062510 = 0.111012
- 10 -
To convert 0.9062510 to Octal
0.9062510 = 0.728
or we could have used the Binary number split into threes. For example:
0.11101
0 . 1 1 1 0 1
add a nought
. 111 010
. 7 2
= .728
- 11 -
Decimal Octal Binary Hexadecimal
0 0 0000 0
1 1 0001 1
2 2 0010 2
3 3 0011 3
4 4 0100 4
5 5 0101 5
6 6 0110 6
7 7 0111 7
8 10 1000 8
9 11 1001 9
10 12 1010 A
11 13 1011 B
12 14 1100 C
13 15 1101 D
14 16 1110 E
15 17 1111 F
Divide the Decimal number by 16 (to give a result) and convert the remainder
to Hex. Take the result and divide by 16 and convert the remainder to Hex. For
example, converting 76210 to Hex (see the workings below) divide 762 by 16.
This gives 47 with the remainder equal to 10 (in Hex = A). The next stage is to
divide 47 by 16 and so in. So:
16 762
16 47 remainder A
16 2 remainder B READ UP
0 remainder 2
∴76210 = 2FA16
Take each Hex character and convert to its four bit binary word and join each
four bit word together. Example, convert 2BC16 to Binary:
- 12 -
2 B C
group into }
4 digits } 0010 1011 1100
∴2BC16 = 10101111002
Fractions in Hexadecimal
Not too unlike the process of converting whole numbers. Example, convert
0.9062510 to Hexadecimal:
So 0.9062510 = 0.E8
To convert to Binary
Also not too unlike the procedure for whole numbers, for example:
0.E8
= 0.111010002
- 13 -
ACTIVITY 8 Convert the following decimal fractions to Hexadecimal:
111100001111101100011.00010011012
= 7417543.04648
= 1E1F63.13416
Note from the above how concise (and therefore less prone to error) the Octal
and Hex systems are compared to the Binary system.
There are several forms of this system but we shall concentrate on the 8421
code. It is used in display read-out systems, decoders and counters.
DECIMAL BCD
23 22 21 20
8 4 2 1
0 0 0 0 0
1 0 0 0 1
2 0 0 1 0
3 0 0 1 1
4 0 1 0 0
5 0 1 0 1
6 0 1 1 0
7 0 1 1 1
8 1 0 0 0
9 1 0 0 1
It is called 8421 code as each digit is weighted from left to right in powers of 2.
You might be thinking that this is the same as the binary code; however, with
numbers from 10 upwards each number is represented by the 4 bit code. For
example 1110 to BCD is 0001 0001 leaving a space between each group of four
digits.
- 14 -
Another example 42910 to BCD
Converting from BCD to Decimal is again quite easy. Split into four groups and
convert each group into BCD, eg convert 10000101 to BCD
8 5
so 10000101 = 8510
Summary
DECIMAL 347
BINARY 101011011
8421 BCD 0011 0100 0111
OCTAL 533
HEXADECIMAL 15B
Adding. The rules are similar to those when adding decimal numbers, eg 5 + 5
= 0 and carry 1 to the next higher ‘power’ column, and 1 + 1 in binary results
in 0 carry 1.
- 15 -
Rules
0 + 0 = 0
0 + 1 = 1
1 + 0 = 1
1 + 1 = 0 and carry 1
1 + 1 + 1 = 1 and carry 1
1011
1110
11001
111 Carry
= 11001
0 – 0 = 0
1 – 0 = 1
1 – 1 = 0
0 – 1 = 1 and borrow 1
11011
10101 –
00110
1 borrowed
0 x 0 = 0
0 x 1 = 0
1 x 0 = 0
1 x 1 = 1
1100
11
1100
1100 ADD
100100
- 16 -
Multiplication in a computer is achieved by repeated addition (eg in Decimal 2
x 4 is computed as 2 + 2 + 2 + 2 = 8).
1 0
1) 1 1) 0
1010
110) 111100
110
0011
110
00000
The computer needs to distinguish between positive and negative numbers for
data storage purposes. To do this there is usually an additional bit added
which identifies whether the number is positive or negative, eg ‘0’ for positive
numbers and ‘1’ for negative numbers.
Example – using an 8 bit binary word with the sign bit added on the front.
Decimal Binary
- 4.5 100100.100
sign bit
-ve
+ 10.25 001010.010
sign bit
+ve
This is a convenient method for storing numbers but does not allow direct
subtraction of one number from another. Computers, in fact, go through a
process of addition and do not subtract. By inverting each digit and adding 1
the negative of the number is obtained. This process is called TWO’s
COMPLEMENT. The Twos Complement process involves inverting each bit in a
word and adding 1.
- 17 -
Once the twos compliment of a number is found it can be added to any other
Binary number to give a result the same as subtraction.
Note. Negative numbers have a 1 in the most significant bit position whilst the
positive number has a 0.
5 – 7 = 5 + (-7) +7 = 0111
Invert = 1000
Add 1 = 1001
so = 0101 + 1001
= 0101
1001 +
1110
1110 effectively = - 2
This means that both addition and subtraction can be done by the same
circuits in a computer, as well as multiplication and division.
DIGITAL CIRCUITS
- 18 -
LOGIC GATES
Used in logic networks to control the flow of data through the system. They are
called logic gates since the ‘gates’ are opened and closed by the binary inputs
in order to perform a logical function.
Logic gates are the basic building blocks from which many different kinds of
logical outputs can be obtained. The gates we shall consider are the AND,
NOT, OR, NAND, NOR and XOR gates.
Logic gates have binary inputs of 1 or 0 and they may represent (in a circuit)
ON, CLOSED (logic 1) or OFF, OPEN (logic 0). We shall be using the American
symbols for the gates in this and all other LBP books. (There are British
Standard symbols but they are not in common use in the aircraft industry).
This gate can have two or more inputs and only one output. It will give an
output if all inputs are on. If any one input is not available the output will be
zero. The symbol for a 2 input AND gate is shown below.
The AND gate can be made up electrically by two switches in series. The lamp
will only light when switches A AND B are both made. If any one switch is
open the lamp will not light.
- 19 -
The operation of the logic gate can be described by means of a TRUTH TABLE.
When switch A is open (logic 0) and switch B is made (logic 1) – there still no
output to the lamp (logic 0). When switch A is made (logic 1) and switch B is
made (logic 1) there is an output to the lamp (logic 1). So when A AND B are
logic 1 then there is an output. This is summarised in the truth table:
A B S
0 0 0
1 0 0
0 1 0
1 1 1
The table shows A and B as the inputs and S as the output. There are only 2
inputs but there may be more, eg A, B, C, D, E etc.
.
The Boolean expression for this gate is written A B = S. The dot means AND,
and the expression is read as ‘A AND B equals S’ (the S is sometimes called z).
ACTIVITY 10 Sketch a circuit for a three input AND gate and draw it’s symbol
and derive it’s truth table.
The OR Gate
Can have two or more inputs and will give an output if any one input is logic
1.
- 20 -
Fig. 4 ELECTRICAL ‘OR’ GATE CIRCUIT
A B S
0 0 0 Both switches open
1 0 1 Switch A closed
0 1 1 Switch B closed
1 1 1 Switches A and B closed
A + B = S
This gate produces an inversion of the input signal, so when the input is A the
output is NOT A, which is symbolised by a bar on top of the A = A. So the
output of this gate is the opposite to it’s input. So input logic 1, output logic 0.
Input logic 0, output logic 1. The truth table:
A S
1 0
0 1
- 21 -
The Boolean expression is:
S=A
This is short for NOT AND and works similar to a NOT gate except that it has
more than one input.
The bubble on the end of what is an AND gate has the same function as in the
NOT gate – it inverts the signal, except that in this case more than one input is
involved. In this gate when A is 0 AND B is 0 then the output is 1. In the AND
gate this would be 0. So the NAND gate is an inverted AND gate.
.
A B = S .
The bar over A B gives NOT AND
and is read as ‘NOT (A AND B)
EQUALS S’.
- 22 -
Again an input A = 0 and B = 0 would, for a OR gate, give 0 as an output, but
for the NOR gate it would give a 1 as an output.
You may have noticed that the OR gate gives an output when A OR B = 1 and
when A AND B = 1. The XOR gate only gives an output when A OR B are 1 not
when A AND B are 1, so it is exclusively an OR gate and will not work under
the AND function. It is read as a two syllable word x then or.
It should be appreciated that for all the gates so far discussed we have
assumed logic 1 is positive (+5 volts) and logic 0 is zero (0 volts). This is called
POSITIVE LOGIC and is the notation most frequently used. However,
NEGATIVE LOGIC may be used, and this means that logic 0 is positive (+5
volts) and logic 1 is zero (0 volts). We shall use positive logic throughout this
book.
- 23 -
To consolidate your knowledge of logic gates we shall put a few together to
make up some simple logic circuits. Note that bubbles on inputs (or outputs)
to/from gates negates or inverts the signal.
With reference to logic circuit 1 figure 9, what is the output logic level S if A =
logic 1, B = logic 0 and C = logic 0?
..
The output of gates 1 and 2 is A B C (read as ‘NOT [A AND NOT B] AND C’).
ACTIVITY 11 Study the following circuits (figures 10 and 11) and determine
the logic level of the output from each.
(a)
blank
- 24 -
(b)
The earliest examples of logic mechanisms were those using mechanical levers
(the key in a lock for example – which is AND logic), gear wheels etc. Other
systems used low-pressure highly filtered air in accurately engineered logic
gates to control machines (commonly machines used in production
engineering). These devices were slow, heavy and prone to failure due to their
moving parts.
Electrics have played a part in logic circuits as shown in the drawings above
on AND and OR circuits. Micro switches, suitably wired are still used on many
aircraft to perform logic functions. With the introduction of electronics, solid-
state circuitry can perform the most complex logic functions with the
advantages of minimal size and weight; very low power consumption, and very
fast operation.
The simplest logic system using discrete components was the diode-resistor
(DR) logic and figure 12 shows an AND gate made from these components.
- 25 -
Note that the 0V line is shown as an earth or ground line as the AND circuit
will be connected to an earthed circuit at the S output.
When A or B = 0 then current will flow from the +ve 5V supply line through the
resistor and the diodes. This means that all the voltage is dropped across the
resistor and no voltage is on the output line, so the output (S) is 0V (logic state
0).
When A and B are logic 1 (+5V), no current flows, voltage is the same both
sides of resistor R and the output is +5V (logic state 1).
When A or B are logic 1 (+5V) current will flow and S will be high (logic 1).
When A and B have no voltage supply (0V) then there will be no output voltage
at S (S = logic 0).
The next advance was resistor transistor logic (RTL) and diode transistor logic
(DTL). The diagrams below show some typical circuits.
- 26 -
Fig. 15 DTL NAND GATE
Today since the integrated circuit (IC) became possible the logic gates work by
transistor-transistor logic (TTL), metal oxide semiconductors (MOS) and
complementary metal oxide semiconductor (CMOS) group of families.
The following diagram shows a typical IC with its plastic case partly cut- away
to show the ‘chip’.
Fig. 16 AN IC PACKAGE
Note the metal pins – for inserting into a suitable IC socket or to be soldered
into a PCB (Printed Circuit Board). Note also the metal connections from the
chip to the pins. The reason for this form of construction is so as to allow the
chip to be connected to other circuits. It is too small, in it’s original form, to be
handled and/or to be connected to anything.
- 27 -
eg:
The diagrams below show the some TTL and CMOS gates.
blank
- 28 -
Fig. 19 CMOS NOR GATE
TTL uses bi-polar transistors along with diodes and transistors formed to
microscopic dimensions on a slice of silicon (chip). TTL must have a steady 5V
dc supply, while CMOS will work on dc voltages between 3 and 15V and
usually requires much less power. CMOS uses unipolar Field Effect
Transistors (FETs) with metal-oxide-silicon technology, this lends itself to VLSI
as they take up less room on a chip, compared to the TTL. CMOS has a much
higher input impedance.
One important point with CMOS is that if static electric charges are allowed to
build up on it’s input pins, these voltages can break down the thin layer of
silicon oxide insulation between the gate and the other electrodes of
MOSFET’S and this will destroy the IC. So anti-static protection is important.
Never touch the pins.
- 29 -
Gate operating parameters include:
Speed of operation. The time that elapses between the application of a signal to
an input terminal and the resulting change in the logical state at the output
terminals.
Fan-in. The number of inputs coming from similar circuits that can be
connected to the gate without adversely affecting it’s performance.
Noise margin. This is maximum noise voltage (unwanted voltage) that can
appear at it’s input terminals without producing a change in output state.
Typical figures for TTL and CMOS are shown below (details need not be
committed to memory).
If you look back at the diagrams for the TTL AND gate and the TTL NAND gate
you will see that the NAND gate uses fewer components and is therefore
cheaper to produce.
This also applies to the NOR gate, ie it is cheaper to produce than the OR gate.
NAND gates can be connected together to form any of the other basic gates –
thus reducing production costs by manufacturing one gate only.
The following drawings show how these gates can be formed. Take a moment
to study each gate arrangement and check that it does perform the logic
function
described
- 30 -
Fig. 21 VARIOUS GATE ARRANGEMENTS
The following drawings show the pin connections of ICs for different gate
configurations. There is no need to remember them but it does give a good idea
of how the chip (with the gates in) is connected externally – although the chip
itself is so small that it looks like a small piece of silver metal 4 or 5 mm
square and about as thick as a piece of paper.
- 31 -
Fig. 22 PIN CONNECTIONS FOR A TTL NOR GATE
- 32 -
Fig. 25 PIN CONNECTIONS FOR A CMOS ‘AND’ GATE
- 33 -
Fig. 30 ‘NOT’ OR INVERTING GATE
At first sight it might appear that they are not equivalent by looking at the
Boolean expressions. However using De Morgans rules we can prove they are
the same.
A+B = A.B
A.B = A + B
Taking rule 1. NOT A OR B = NOT A AND NOT B. To apply the rule, split the
bar and change the sign.
Taking the first AND gate output A.B. The equivalent circuit output is A + B.
Splitting the bar = A + B and changing the sign = A . B. A double bar over
a letter removes both bars, ie second bar negates the single bar so the output
is A.B, the same as the AND gate. This procedure can be used with all the
equivalent circuits. However, much more importantly, to convert the AND gate
into it’s OR gate equivalent, draw the OR gate, remove bubbles where there are
any and add bubbles where there are none. There are no bubbles on the AND
gate so add bubbles on all three connections of the OR gate.
If you look at the NAND gate you will see that the OR gate has two bubbles on
the input (none on the NAND) and none on the output, (one on the NAND). So
WHERE THERE ARE BUBBLES REMOVE THEM, WHERE THERE ARE NO
BUBBLES PUT SOME IN, this will then give you the equivalent circuit.
- 34 -
ADDERS
Adders may be in the form of Full Adders or Half Adders. They perform binary
addition and are used in many applications.
This adds two bits at a time and has a total of four cases to deal with. Figure
31 shows the symbol and table 4 gives the truth table.
Inputs Outputs
A B Sum Carry
0 0 0 0
0 1 1 0
1 0 1 0
1 1 0 1
Note that 1 + 1 = 10 (two), ie 0 carry 1, the carry being used as an input to the
next part of an adder circuit.
There are many ways of building a half-adder from logic gates, one such circuit
is shown in figure 32.
- 35 -
A B Sum Carry
0 0 0 0
0 1 1 0
1 0 1 0
1 1 0 1
Follow each addition through. You may well need to look back at the exclusive
OR and AND gate truth tables.
In computers half-adders are combined to make full adders, this adds three
bits at a time and therefore has inputs A, B and C. The basic circuit is shown
in figure 33.
It consists of two half-adders and an OR gate. You will need to go through all
possible combinations, but just as an example we will check the addition of
1 + 1 + 1 (figure 34).
Half adder 1 (H/A 1) has both inputs 1 so gives an output of sum = 0, carry =
1. H/A 2 has inputs of 1 and 0 and this gives an output of sum = 1 carry = 0.
The sum is the output of the full adder, ie 1 and the two inputs to the OR gate
are 1 and 0 so the output (carry of the full adder) is 1. So the answer is 1 carry
1. The truth table for the other three bit combinations is shown in table 6. Try
these for yourself.
- 36 -
Inputs Outputs
A B C Sum Carry
0 0 0 0 0
0 0 1 1 0
0 1 0 1 0
1 0 0 1 0
0 1 1 0 1
1 0 1 0 1
1 1 0 0 1
1 1 1 1 1
COMPARATORS
Within digital systems there are many instances where we need to compare the
values of two binary numbers. The three basic instances are:
The basic logic gate circuit for A > B is shown in figure 35. If A = 1 and B = 0,
the input to the AND gate is 1,1 so the output is high. If A = 0 and B = 1 then
the input to the AND gate is 0,0 and the output is low, so the output is only
high when A > B.
The basic logic gate circuit for A < B is shown in figure 36.
- 37 -
If B = 1 and A = 0 the inputs to the AND gate is 1,1 so the output again is
high. If B = 1 and A = 1 inputs to the AND gate is 0,0 so the output is low. So
the output is only high when A < B.
The following logic gate circuit combines the two circuits discussed so far but
with their outputs also connected to a NOR gate, the complete combination
giving A > B, A < B and A = B.
A
A C
B A B
E
A=B
A
D
B A B
B
The truth table below shows output E is only high (logic 1) when A = 1 and B =
1 and also when A = 0 and B = 0.
A B A B C D E
1 0 0 1 1 0 0
1 1 0 0 0 0 1
0 0 1 1 0 0 1
0 1 1 0 0 1 0
With further logic gates it is possible to compare two two-bit numbers and two
four-bit numbers.
We now need to look at how these gates are used in aircraft circuits. You
should be able interpret these diagrams and explain how an output is arrived
at. You should also be able to describe the operation of a logic circuit if an
unexpected logic input is present.
Logic gate circuitry is extensively used in aircraft schematic diagrams for all
aircraft systems including airframe systems, engine systems, instrument and
avionic systems.
- 38 -
LOGIC CIRCUITS – EXAMPLES
Figure 38 shows an aircraft take-off warning circuit to warn the pilot when
he/she is about to take-off if the aircraft is not correctly configured for take-
off. It can be seen that it consists of two OR gates and an AND gate, with logic
states received from 7 parameters.
When either throttle lever is pushed forward, the switch at that position is
made (advance) and there is a logic state 1 to OR gate 1.
Five other parameters are sensed and logic states sent to OR gate 2.
then the inputs to OR gate 2 are all logic 0 and it’s output to the AND gate is
logic state 0.
Aircraft on the ground (weight switch) gives another logic 1 to the AND gate,
which has at this time 2 logic 1’s and a logic 0.
If either of the four inputs go out of the take–off position, eg flaps greater than
25°, then the flap input signal to logic gate 2 is logic 1 which makes the input
to the AND gate logic 1. The AND gate now has three logic 1’s which now gives
an output to the warning circuits (CONFIG light and aural warning in the
flight deck).
blank
- 39 -
Fig. 38 TAKE-OFF WARNING SYSTEM
- 40 -
Figure 39 shows a diagram is of an undercarriage ‘gear disagree’ indication
circuit. Systems 1 and 2 sense any disagreement between the landing gear
position and the landing gear selector lever position. So if a disagreement is
detected then the ‘gear’ light illuminates.
blank
- 41 -
Fig. 40 TAKE-OFF WARNING CIRCUIT
It is important that you look at the logic schematic diagrams for your aircraft
and work out how the gates are used.
SEQUENTIAL/COMBINATIONAL LOGIC
Before we tackle actual devices we need to look at some memory type circuits
which use sequential logic ie, their outputs depend not only on their present
inputs but on past ones as well.
So far we have only been looking at combination logic circuits whose outputs
are always the same for the same combination of inputs.
FLIP-FLOPS
Memory type circuits use ‘flip-flops’ as their main components. There are many
different types but we shall look at three, the SR or RS, D and JK flip-flops.
These are so called because on the application of a suitable pulse at the input
it causes it to ‘flip’ into one of it’s two stable states and stay in that state until
a second input will ‘flop’ it into its previous state.
- 42 -
The SR Flip-flop
The SR flip-flop has two output terminals Q and Q (spoken as Q and NOT Q).
Figure 41 shows the SR flip-flop using NAND gates. Note that the output from
each of the last NAND gates is fed back to the input of the other NAND gate.
Fig. 41 SR FLIP-FLOP
When S = 0 and R = 0 then no change occurs and Q and Q will be what they
were before.
S R Q Q
1 0 1 0
0 1 0 1
0 0 Depends on state before inputs applied
1 1 Indeterminate
Q = 1 (Q = 0) or Q = 0 (Q = 1)
- 43 -
Clocks
The diagrams below shows a clocked SR flip-flop and it’s truth table.
OUTPUTS OUTPUTS
DURING
BEFORE AFTER
INPUTS CLOCK
CLOCK CLOCK COMMENTS
PULSE
PULSE PULSE
S R A B Q Q Q Q
0 0 1 1 1 0 1 0 NO CHANGE IN
0 0 1 1 0 1 0 1 OUTPUTS
1 0 0 1 1 0 1 0 FLIP-FLOP SETS
WITH
1 0 0 1 0 1 1 0 Q=1 & Q=0
0 1 1 0 1 0 0 1 FLIP-FLOP
RESETS WITH
0 1 1 0 0 1 0 1 Q=0 & Q=1
1 1 0 0 1 0 1 1 THIS INPUT IS
1 1 0 0 0 1 1 1 NOT ALLOWED
- 44 -
The D Type SR Flip-flop
This is a modified SR flip-flop and the D stands for delay. If you look at the
truth table (table 9), when the clock pulse changes (rises), whatever is at D is
transferred to Q, when the clock pulse falls Q stays at that level. No matter
what is applied to D, Q will only change state at the next clock pulse. The truth
table shows that the output equals the input one clock pulse earlier ie, the
data is held back until the clock pulse = 1.
OUTPUTS
OUTPUTS AFTER
INPUT BEFORE CLOCK
CLOCK PULSE
PULSE
D S R Q Q Q Q
0 0 1 1 0 0 1
0 0 1 0 1 0 1
1 1 0 1 0 1 0
1 1 0 0 1 1 0
The JK Flip-flop
The next drawing (figure 44) shows the layout of a JK flip-flop using NAND
gates and its the truth table is shown in table 10.
- 45 -
Fig. 44 THE JK FLIP-FLOP
OUTPUTS
DURING CLOCK OUTPUTS AFTER
INPUTS BEFORE CLOCK
PULSE CLOCK PULSE COMMENTS
PULSE
J K Q Q A B Q Q
0 0 1 0 1 1 1 0 NO CHANGE IN
0 0 0 1 1 1 0 1 OUTPUTS
1 0 1 0 1 1 1 0 STAYS AT OR
SETS TO
1 0 0 1 0 1 1 0 Q=1&Q=1
0 1 1 0 1 0 0 1 STAYS AT OR
RESETS TO
0 1 0 1 1 1 0 1 Q=0&Q=1
1 1 1 0 1 0 0 1
TOGGLES
1 1 0 1 0 1 1 0
The two inputs are called J and K, the operation is fully described in the truth
table and J = K = 1 is allowed (unlike S = R = 1 in a SR flip flop which is not
allowed) and toggles (changes state) when this input is applied.
These flip-flops are used in counters and shift registers and a wide variety of
logic circuits.
Counters
There are many types of counters and the flip-flop counter is the one
discussed here. The next diagram shows the basic principles of counting using
flip-flops. It is a 4 bit binary counter using JK flip-flops. The J & K inputs are
at logic 1 so any pulse 1 to 0 will trigger the output to change from it’s
previous state. The output of one flip-flop is the input to the next – they are
said to be connected in ‘cascade’.
- 46 -
Fig. 45 FOUR BIT BINARY COUNTER
As can be seen from figure 45, every time the input pulse falls from 1 to 0 the
counter increases the 4 bit binary number by 1. This means that QA is the
least significant bit and QD is most significant bit.
You should now be able to follow the sequence through yourself. Remember
every time the outputs go from 1 to 0 the next flip-flop triggers. When the
count reaches 1111 (15) all four flip-flops are reset.
Studying the diagram further you will see it takes two input pulses to make
flip-flop A go from 0 to 1 and back to 0, two pulses from QA to force QB from 0
to 1 and back again, and so on down the chain.
- 47 -
In fact, each flip-flop acts as a divide by two circuit and four flip-flops in a
chain like this make a divide by 16 circuit, because the pulse frequency at QD
output is one sixteenth of the frequency of the input.
QUESTION If there are two flip-flops connected in cascade what would the
division be? (5 mins). If you are not sure of the answer check with
your tutor (Full Students).
Shift Registers
Assume the register is cleared and therefore reads 0000 and an externally
generated word 1011 is to be stored in the register. At the end of the first clock
pulse QA = 1 and JB = 1. After the second clock pulse flip-flop B is set QA = 1
QB = 1.
The state of the register when the third clock pulse arrives is JA = 0 KA = 1
JB= JC = 1 KB = KC = 0 and at the trailing edge of the clock pulse flip-flop A
resets and flip-flop C sets. Now QA = JB = 0, QB = QC =JC = JD = 1.
The last bit to be stored is 1 and at the end of the fourth clock pulse flip- flops
A, C and D are set and flip-flop B is reset ie 1011 is stored. The effect of each
clock pulse is to shift the content of the register one place to the right.
- 48 -
The shift register shown is SERIAL IN and SERIAL OUT but a register can also
be:
Encoders
These are generally at the input end of a system to convert the input signal
into a binary code necessary for the operation of the system. Encoding circuits
may take many forms eg: convert an analogue signal to BCD or 4-bit binary
code; take in a binary signal and convert it into another code to suit the
system eg, OCTAL to BCD etc.
- 49 -
Fig. 50 DECIMAL TO BCD ENCODER
Assume ‘4’ is pressed then diode D5 will conduct through RC making the
output (C) go high, all the other inputs stay low (DBA), so the output is 0100
(decimal 4).
Some form of encoding will be needed to convert the input signals into the
correct code for the system.
In Flight Data recording some of the inputs into the system are in analogue
form, such as dc, ac or syncro signals. This means that they have to be
encoded into digital form for use by the Central Processing Unit (CPU). This is
done by an Analogue to Digital Converter.
- 50 -
ANALOGUE TO DIGITAL CONVERTERS
Figure 51 shows the basic layout of a digital ramp converter. Study the
drawing and note the analogue input and the clock and start inputs. Note that
the DAC is a digital to analogue converter.
When the start pulse logic 1 is applied, the counter is reset, no pulses are fed
through the AND gate as it is ‘closed’.
As the counter counts up, its value is converted into its analogue equivalent by
the digital to analogue converter (DAC or D to A or D/A) and applied to the
comparator at B.
- 51 -
The DAC output therefore increases in steps until it reaches just above the
analogue input level, ie B input > A. The comparator output goes low, the AND
gate closes, the count stops, and the digital read-out is then taken from the
counter.
The best approximation that can be obtained depends on how much input B
has to be greater than A, ie the step size. This is known as the Quantization
Error. This type of Analogue to Digital (ADC or A to D or A/D) converter is slow
in operation and unsuitable for high-speed operation, and, of course, the
larger the voltage the longer time it takes (more steps). The comparator would
be an operational amplifier (see LPB EASA module 4 books).
This is a faster ADC and is similar to the previous circuit but the register is
used instead of a counter and a control logic circuit is included between the
comparator and register, which controls the output of the register.
Initially a reset signal puts all bits in the register to 0. The control logic (first
clock pulse) sets the MSB in the register to 1 and the rest to logic 0. The
output of the DAC is then compared to the analogue input (A). If B < A then
the MSB remains at 1. If B > A it is set to zero.
At the next clock pulse the control changes the next bit in the register to logic
1, if B > A it is set to 0, if B < A it remains at 1 and so on until all the bit
values are found. The digital read-out can then be read.
This DAC has a fast conversion time which does not depend on the analogue
voltage level but just on the number of bits in the converter. The converter has
a good resolution and a wide range.
- 52 -
The Integrated (Duel Slope) Converter
This uses an analogue circuit integrator (see module 3). The output voltage of
an integrator varies, not just as a function of the input but also as a function
of time. For example, if the input voltage changes ‘instantly’ (say from 0V to
5V) it takes time ‘t’ for the output voltage to change the same amount. This
can be seen in figure 54 where the input is shown as a positive pulse.
The output of the integrator is a slowly changing voltage, rising to a peak then
decreasing back to zero. Voltages which change like this are often called
‘ramps’ and the voltage ramps-up when it increases and ramps-down when it
decreases.
By integrating the analogue voltage for a fixed time t1 then counting the clock
pulses for the time t2 which the integrator takes for its output to fall back to
zero (ie capacitor fully discharged at a fixed rate) then this time is a measure of
the analogue input.
These converters are slower that the Successive Approximation type but can
be very accurate and have a high immunity to noise. Often used in digital
multimeters where accuracy and not speed is the prime concern.
- 53 -
The Charge Balancing Converter
With reference to figure 55. The differential amplifier (op-amp) at the input is
continuously comparing the analogue input signal with the output of the
internal 1 bit DAC (Digital to Analogue Converter).
This is typically working at 256 times the required sample frequency of the
final digital output. That is, if the final sampling rate is 44.1kHz the internal
sampling clock would be 11.2896MHz.
- 54 -
The term Charge Balancing comes about because the whole aim of the DAC –
differential amplifier – comparator loop is to maintain a zero charge on the
integrator capacitor.
The clocked comparator produces just sufficient logic 1 pulses at any one time
to cancel (via the differential amplifier) the charge due to the analogue input
flowing into the integrator. In other words the output of the AND gate carries a
high speed bit stream clocked at typically 11.2896MHz where the density of
the ‘ones’ is proportional to the analogue voltage.
TERMINOLOGY
Resolution. The number of steps the input range is divided into. This is
usually expressed as bits (n) and the number of steps is 2n – 1 (which equates
to 2n values). A converter with a 12 bit resolution divides the range into 212 or
4096 values.
Range. The input (or gain) range refers to the maximum and minimum voltage
that will be digitised by the ADC.
Sample and Hold Acquisition Time. A sample and hold circuit ‘freezes’ an
otherwise varying analogue voltage at the moment the sample is required. This
voltage is held constant while the signal is digitised by the ADC. The
acquisition time is the time between releasing the hold state and the sample
circuit settling to a new input voltage. Sample and hold circuits are not used
with integrating converters.
Throughput. This the maximum rate at which the converter can acquire and
transfer values, eg if a converter takes 10µs to acquire and convert, it will be
able to generate 100,000 samples per second.
Linearity. Ideally an ADC with n bit resolution will convert the input range into
equal steps. In practice the steps are not exactly equal, which leads to non-
linearity in a plot of A to D output against input signal.
Offset Errors. Offset is where a reading other than zero for a zero condition is
obtained. It means that every reading will be inaccurate by this amount.
- 55 -
DECODERS
A decoder is a device which is usually at the output end of a digital system and
converts the binary code into decimal ie, changes the operational working code
into the code necessary to operate the system. Some examples of this are
where BCD is converted into a code necessary to operate a seven-segment
display. The next diagram shows such a display.
Also in the circuit are four switches S, S1, S2, S3, and S4 which are electronic
switches (digitally controlled). Each switch connects the resistor to a fixed
reference Vref when the input bit is logic 1 (+5v) and to ground (0v) when the
input bit is logic 0.
- 56 -
Fig. 57 DIGITAL TO ANALOGUE CONVERTER
V0 = (V1 + V2 + V3 + V4 )
(1 2 4 8 )
V1 = V2 = V3 = 0
V0 = - ( 0 + 0 + 0 - 8 )
8
V0 = + 1V
Note. With the example shown the output was positive but if Vref was +8V then
the output would be –1V.
V0 = - (0+ - 8 + 0 + 0)
(2)
- 57 -
V0 = - (- 8)
(2)
= + 4V
ACTIVITY 14 If the Vref is –5V what would be the weighting of the LSB in this
system where Rf = R = 1K? Use input 0001.
The accuracy of this system depends on the resistors and the precision of the
input supply. Resistors can be made to reasonable accuracy and the electronic
switches can be replaced by precision level amplifiers. These ensure there
outputs are exactly 5V or 0V depending on their outputs.
High input ensures 5V from the amplifier to the input resistor of the op-amp
(operational amplifier) and a low output ensures 0V.
Another problem is, the larger the bit word the more the range of resistors is
required ie, for every extra bit the range of the required resistors doubles. So
another method of converting digital to analogue must be found for digital
words with a large number of bits. It is called the R–2R type.
The circuit works on the principle that a pair of 2R resistors at the end of the
ladder can be considered in parallel, forming an overall resistance R.
This system does use twice the number of resistors compared to the binary
weighted network, but the use of only two values of resistors means the
system can handle any number of input bits, simply be extending the resistor
ladder.
- 58 -
There is no need to commit the details of the operation to memory but you
should know it exists.
Multiplexers
A multiplexer is a device which selects data from one of many inputs and
connects this data to a common single output. Some practical examples are in
Flight Data Recording (FDR) where the Digital Flight Data Acquisition Unit
(DFDAU) receives a large number of inputs from the various aircraft
parameters which have to be sampled and fed to the FDR.
When the passenger selects the required service eg the film channel, then only
the information on that line relevant to the film channel is selected by a de-
multiplexer and fed to the passenger.
Each train is sent down the same main line in this fashion. Data can be
transmitted like this, but at much greater speeds of course.
The multiplexer unit can be likened to a mechanical rotary switch (see drawing
below), with separate units of data waiting in temporary store to be
transmitted down the data output line. In reality it is electronic with no
moving parts and is very fast.
- 59 -
Fig. 59 SIMPLE REPRESENTATION
OF A MULTIPLEXER
Now try X = 0 and Y = 1 and you will see the AND gate 3 gives an output of 1
and finally when X = 1 and Y = 1 then AND gate 4 will give an output of 1. So
the OR gate will have passed the input 1111 down to data highway serially.
This data has to be transferred along a data highway usually by Time Division
Multiplexing (TDM). In TDM the data channels each occupy the same
frequency band but divides the channel into time slots into which bits of signal
are transmitted.
Figure 61 shows four data channels operating at 200bits/sec. The buffer store
is a holding store until access to the data highway is signalled.
- 60 -
Fig. 61 TIME DIVISION MULTIPLEXER
The duration of each bit is 1/200s or 5ms (5 milli seconds) so an 8-bit word
occupies 40ms. The common line is operated at input channel speed times the
number of channels ie, 4 x 200 = 800 bits/sec. So each bit will have a time
slot of 1.25mS.
Data from the systems connected to Channels 1, 2, 3 and 4 are fed into a
Buffer Store, until each store is signalled by the clock pulse to output its data
onto the common line in sequence.
As you can see from the diagram there must be some way of converting these
signals to the appropriate receiving channel, ie channel 1 input signal data to
be picked up by channel 1 receiving channel.
This will be by a de-multiplexer (not shown), a device with a single input but
with multiple outputs.
De-multipexer
These are similar to a multiplexer but works ‘the other way round’. They take
sequential input data from a common data line and output each piece of data
to its appropriate channel. The drawing below shows the mechanical
equivalent of the electronic device.
- 61 -
Fig. 62 SIMPLE REPRESENTATION
OF A DE-MULTIPLEXER
As the name implies it has 1 input line and 8 output lines, with the single data
input line connected to all 8 gates. Each gate will be enabled by the signals on
the select lines S2 S1 S0. Assuming 000 input on the select lines only GATE 0
will open and the data will appear at its output. The truth table shows the
logic states of the de-multiplexer.
- 62 -
SELECT CODE OUTPUTS
S2 S1 SO O7 06 05 04 03 02 01 00
0 0 0 0 0 0 0 0 0 0 1
0 0 1 0 0 0 0 0 0 1 0
0 1 0 0 0 0 0 0 1 0 0
0 1 1 0 0 0 0 1 0 0 0
1 0 0 0 0 0 1 0 0 0 0
1 0 1 0 0 1 0 0 0 0 0
1 1 0 0 1 0 0 0 0 0 0
1 1 1 1 0 0 0 0 0 0 0
The multiplexer selects all the inputs in turn, (12 channels of recorded music,
passenger address messages and tape signals) digitises them (analogue to
digital converter) into one serial data signal stream. This stream of data is fed
to the seats via sidewall disconnect units. The data is received by the
electronic boxes.
””””””””””
- 63 -
ASSIGNMENT
(i) Encoding
(ii) Decoding
(iii) A to D conversion
(iv) D to A conversion
(v) Multiplexing and de-multiplexing
SOLUTIONS TO ACTIVITIES
Activity 1
(a) 1 x 24 + 0 x 23 + 0 x 22 + 1 x 21 + 1 x 20 = 100112
(b) 1 x 24 + 1 x 23 + 1 x 22 + 0 x 21 + 1 x 20 = 111012
2-4 = 10110.00012
Activity 2
(a) 2 846
2 423r0
2 211r1
2 105r1
2 52r1
2 26r0
2 13r0
2 6r1
2 3r0
2 1r1
0r1 = 11010011102
(b) 2 317
2 158r1
2 79r0
2 39r1
2 18r1
2 9r1
2 4r1
2 2r0
2 1r0
0r1 = 1001111012
- 64 -
(c) 2 147
2 73r1
2 36r1
2 18r0
2 9r0
2 4r1
2 2r0
2 1r0
0r1 = 100100112
Activity 3
(a) 32 16 8 4 2 1
1 0 1 1 1 1 2 = 4710
(b) 32 16 8 4 2 1
1 0 0 0 0 0 2 = 3210
(c) 32 16 8 4 2 1
1 0 1 0 1 2 = 2110
Activity 4
(a) 32 16 8 4 2 1
1 1 0 0 1 1 2 = 5110
(b) 64 32 16 8 4 2 1
1 1 1 0 0 1 12 = 11510
(c) 8 4 2 1 .5
1 0 1 1 . 1 2 = 11.510
Activity 5
(a) 101010100
(b) 1110100000
- 65 -
(c) 111010001
(d) 4 2 68
(e) 5 6 2 58
(f) 6 5 2 1 78
Activity 6
7 . 78
5 . 48
6 . 3 48
(d) .64
.110 1002
(e) .778
.111 1112
(f) .438
.100 0112
- 66 -
Activity 7
E 216
7 F16
3 916
(d) 2 D
10 16 8 4 2 1
0010 1101 = 1 0 1 1 0 12 = 4510
(e) 1AF
256 128 64 32 16 8 4 2 1
0001 1010 1111 = 1 1 0 1 0 1 1 1 12 = 43110
(f) 21A
(g) 163210
(h) 494
256 128 64 32 16 8 4 2 1
0001 1 1 1 0 1 1 1 02
1 E E16
(i) 5174
0001 0 1 0 0 0 0 1 10110
1 4 3 616
- 67 -
(j) 178 to Decimal
256
128
64
32
16
8
4
2
1
0001 0111 1000 = 1 0 1 1 1 1 0 0 02
= 37610
= 101 111 000
= 5708
Activity 8
(a) 0.6250
= 12-1 + 0 x 2-2 + 1 x 2-3
= .1010
= .916
(b) 0.81250
= 1 x 2-1 + 1 x 2-2 + 1 x 2-3 + 1 x 2-4
= .1101
= .D16
Activity 9
(a) 9 4
1001 0100
(b) 5 2 9
(c) 2 9 4 7
- 68 -
Activity 10
Activity 12
Activity 13 ---
Activity 14 0.625V
”””””””””
- 69 -