Zeal Polytechnic, Pune
Zeal Polytechnic, Pune
Zeal Polytechnic, Pune
Marks
P.T.O.
22426 [2]
Marks
2. Attempt any THREE of the following: 12
a) Draw the interfacing of stepper motor and write an ALP to
rotate in anticlockwise direction.
b) Describe power down mode and ideal mode of 8051 with
circuit diagram. Which SFR is used to set these modes and
draw the same.
c) State the alternative functions of port 3 of 8051 microcontroller.
d) Sketch interfacing diagram of 2 Kbyte RAM and 2 Kbyte
EPRAM to 8051. Draw the memory map .
SUMMER-19 EXAMINATION
Subject Name: Microcontroller and applications Model Answer Subject Code: 22426
1
SUMMER-19 EXAMINATION
Subject Name: Microcontroller and applications Model Answer Subject Code: 22426
2
external hardware interrupts- INT0 and INT1, Serial communication interrupt for both
receive and transmit.
(b) Find out the number of address lines required to access 4 KB of RAM 2M
Ans: 2M for
format
TI SCON.1 Transmit interrupt flag. Set by hardware at the beginning of the stop Bit in
mode 1. Must be cleared by software.
Page 2
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
SUMMER-19 EXAMINATION
Subject Name: Microcontroller and applications Model Answer Subject Code: 22426
3
RI SCON.0 Receive interrupt flag. Set by hardware halfway through the stop bit time
in mode 1. Must be cleared by software.
Ans: Each
Parameter
Parameter 8951 8031
: 1M
RAM in bytes 128 Bytes 128 Bytes
Ans: Diagram
:2M
OR
Page 3
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
SUMMER-19 EXAMINATION
Subject Name: Microcontroller and applications Model Answer Subject Code: 22426
4
g) Define the term BUS related to microprocessor/controller and list different buses used in 2M
microcontroller.
Ans: BUS: A Bus is a set of physical connections used for communication between CPU and Define:1
peripherals. M
1. Address Bus
2. Data Bus
3. Control Bus
a) Draw the interfacing of stepper motor and write an ALP to rotate in anticlockwise 4M
direction
Page 4
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
SUMMER-19 EXAMINATION
Subject Name: Microcontroller and applications Model Answer Subject Code: 22426
5
Program
:2M
OR
Page 5
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
SUMMER-19 EXAMINATION
Subject Name: Microcontroller and applications Model Answer Subject Code: 22426
6
(NOTE: Any other correct logic used for program should be considered)
b) Describe power down mode and ideal mode of 8051 with circuit diagram . which SFR is 4M
used to set these modes and draw the same.
Ans:
IDLE MODE
In the Idle mode, the internal clock signal is gated off to the CPU, but not to the Power
Interrupt, Timer and Serial Port functions. down
The CPU status is preserved in its entirety, the Stack Pointer, Program Counter, mode:1
Program M
Status Word, Accumulator, and all other registers maintain their data during Idle. The
Idle
port pins hold the logical state they had at the time idle mode was activated. ALE and
Mode:1
PSEN hold at logic high levels.
M
There are two ways to terminate the idle mode.
i) Activation of any enabled interrupt will cause PCON.O to be cleared and idle mode is Identific
terminated. ation of
ii) Hard ware reset: that is signal at RST pin clears IDEAL bit IN PCON register directly. At PCON:1
this time, CPU resumes the program execution from where it left off. M
Page 6
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
SUMMER-19 EXAMINATION
Subject Name: Microcontroller and applications Model Answer Subject Code: 22426
7
P3.3
P3.4 T0
P3.5 T1
P3.6
P3.7
RXD it is used for serial input port
TXD it is used for serial output port
used for external interrupt 0
used for external interrupt 1
T0 Timer 0 external input
T1 Timer 1 external input
external data memory write strobe
external data memory Read strobe
d) Sketch interfacing diagram of 2 Kbyte RAM and 2Kbyte EPROM to 8051. Draw the memory 4M
map.
Page 7
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
SUMMER-19 EXAMINATION
Subject Name: Microcontroller and applications Model Answer Subject Code: 22426
8
Ans:
Memory Map:
Page 8
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
SUMMER-19 EXAMINATION
Subject Name: Microcontroller and applications Model Answer Subject Code: 22426
9
a) Draw the format of PSW register of 8051 microcontroller and explain the function of each 4M
bit.
Ans: 2M
format,
2M
function
Page 9
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
SUMMER-19 EXAMINATION
Subject Name: Microcontroller and applications Model Answer Subject Code: 22426
10
This flag is set whenever the result of a signed number operation is too large, causing the
high- order bit to overflow into the sign bit. In general, the carry flag is used to detect errors
in unsigned arithmetic operations. The overflow flag is only used to detect errors in signed
arithmetic operations.
6. P: Parity flag
The parity flag reflects the number of 1s in the A (accumulator) register only. If the A register
contains an odd number of 1s, then P=1. P=0 if A has an even number of 1s.
b) Develop an ALP to generate square wave of 2 kHz on port pin P2.1 generate delay using 4M
timer 0 in mode 1. Assume crystal frequency of 11.0592 MHz.
c) State and explain the need of the following development tools microcontroller board: 4M
(i) Editor
(ii) Assembler
(iii) Compiler
(iv) Linker
Ans: 1) Editor: An editor is a program which helps you to construct your assembly language 1M each
program in right format so that the assembler will translate it correctly to machine language.
So, you can type your program using editor. This form of your program is called as source
program and extension of program must be .asm or .src depending on which assembler is
Page 10
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
SUMMER-19 EXAMINATION
Subject Name: Microcontroller and applications Model Answer Subject Code: 22426
11
used. The DOS based editor such as EDIT, WordStar, and Norton Editor etc. can be used to
type your program.
2) Assembler: An assembler is programs that translate assembly language program to the
correct binary/hex code for each instruction i.e. machine code and generate the file called as
Object file with extension .obj and list file with extension .lst extension. It is used to find
syntax error in the program.
3) Compiler: Compiler is programs that translate C language program to the correct
binary/hex code for each command i.e. machine code and generate the file called as Object
file with extension .obj and list file with extension .lst extension. It is used to find syntax
error in the program.
4) Linker: A linker is a program, which combines, if requested, more than one separately
assembled object files into one executable program, such as two or more programs and also
generate .abs file and initializes it with special instructions to facilitate its subsequent
loading the execution. Some examples of linker are ASEM-51 BL51, Keil u Vision Debugger,
LX 51 Enhanced Linker etc.
d) List software and hardware interrupts used in 8051 with their vector addresses and 4M
priorities.
Ans: 2M-List,
1M -
Vector ,
1M-
priority
(a) Develop an 8051 based system for traffic light controlling .Draw interfacing diagram and 4M
write ALP for the same.
Page 11
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
SUMMER-19 EXAMINATION
Subject Name: Microcontroller and applications Model Answer Subject Code: 22426
12
Ans: 2M-
DRAW,
2M-
PROGRA
M
Page 12
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
SUMMER-19 EXAMINATION
Subject Name: Microcontroller and applications Model Answer Subject Code: 22426
13
Process:
Program:
NR EQU P1.0
NY EQU P1.1
NG EQU P1.2
Page 13
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
SUMMER-19 EXAMINATION
Subject Name: Microcontroller and applications Model Answer Subject Code: 22426
14
SR EQU P1.3
SY EQU P1.4
SG EQU P1.5
ER EQU P1.6
EY EQU P1.7
EG EQU P3.0
WR EQU P3.1
WY EQU P3.2
WG EQU P3.3
MOV P1,#00H
MOV P3,#00H
ACALL DELAY
Page 14
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
SUMMER-19 EXAMINATION
Subject Name: Microcontroller and applications Model Answer Subject Code: 22426
15
ACALL DELAY
ACALL Y_DELAY
AJMP AGAIN
L:MOV R1,#0FFH
DJNZ R1,$
DJNZ R0,L
RET
Page 15
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
SUMMER-19 EXAMINATION
Subject Name: Microcontroller and applications Model Answer Subject Code: 22426
16
DJNZ R2,$
RET
END
Ans: 1M Each
Page 16
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
SUMMER-19 EXAMINATION
Subject Name: Microcontroller and applications Model Answer Subject Code: 22426
17
(c) List different timer modes of 8051 microcontroller and describe mode 2 with neat sketch. 4M
1.5M-
Diagram
, 1.5M-
describe
Page 17
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
SUMMER-19 EXAMINATION
Subject Name: Microcontroller and applications Model Answer Subject Code: 22426
18
To start the mer in mode 2 C T= 0 and TR0=1 and the other input of AND gate is also 1.In
this mode only TLX is used as 8-bit counter. THX is used to hold the value which is loaded in
TLX initially. Every time TLX overflows from FFH to 00H the timer flag is set and the value
from THX is automatically reloaded in TLX register.
(d) Explain the interfacing diagram of DAC to 8051. Write an ALP to generate triangular 4M
waveform using DAC.
Page 18
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
SUMMER-19 EXAMINATION
Subject Name: Microcontroller and applications Model Answer Subject Code: 22426
19
Program:
ORG 0000H
REPEAT: MOV A, #00H ; Clear A
INCR: MOV P1, A ; Send value to P1
INC A ; increment value
CJNE A, #0FFH, INCR ;Compare with highest value
DECR: MOV P1, A
DEC A ; Decrement value
CJNE A,#00H, DECR ;Compare with lowest value
SJMP REPEAT ; repeat
END
(e) Develop an ALP to transmit message “MSBTE” serially at baud rate 4800 8bit data , 1 stop 4M
bit. Assume crystal frequency of 11.0592 MHz .
Page 19
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
SUMMER-19 EXAMINATION
Subject Name: Microcontroller and applications Model Answer Subject Code: 22426
20
Ans: Any 6
The selection of microcontroller depends upon the type of application. The following factors 1
must be considered while selecting the microcontroller. Mark—
each
factor
1. Word length: The word length of microcontroller is either 8, 16 or 32 bit. As the
word length increases, the cost, power dissipation and speed of the microcontroller
increases.
2. Power dissipation: It depends upon various factors like clock frequency, speed,
Page 20
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
SUMMER-19 EXAMINATION
Subject Name: Microcontroller and applications Model Answer Subject Code: 22426
21
supply voltage, VLSI technology etc. For battery operated embedded systems, we must use
low power microcontrollers.
3. Clock frequency: The speed of an embedded system depends upon the clock
frequency. The clock frequency depends upon the application.
4. Instruction Set: On the basis of instructions microcontrollers are classified into two
categories 1. CISC 2. RISC.
CISC system improves software flexibility. Hence it is used in general purpose systems.
RISC improves speed of the system for the particular applications.
5. Internal resources: The internal resources are ROM, RAM, EEPROM, FLASH
ROM, UART, TIMER, watch dog timer, PWM, ADC, DAC, network interface, wireless
interface etc. It depends upon the application for which microcontroller is going to be used.
6. I/O capabilities: The number of I/O ports, size and characteristics of each I/O port,
speed of operation of the I/O port, serial port or parallel ports. These are the considerations
needed to ascertain.
7.Memory: For mass production of microcontrollers ROM versions and for lesser production
EPROM version or CPU version with external program memory is suitable
b) Develop a program to transfer block of 05 numbers. From memory location 50H to 60H. 6M
Ans: 4
NOTE: Program may change. Please check the logic and understanding of students M—
Correct
Program
,2 M-
ORG 0000H ; Program from 0000H
commen
CLR PSW.3 ; select bank 0
ts
CLR PSW.4 ;
MOV R3, #05H ; Initialize Byte counter
MOV R0, #50H ; Initialize memory pointer for source array
MOVR1,#60H ; Initialize memory pointer for destination array
; therefore R0 Source pointer
; R1 destination pointer
UP : MOV A, @R0 ; Read number from source array
Page 21
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
SUMMER-19 EXAMINATION
Subject Name: Microcontroller and applications Model Answer Subject Code: 22426
22
c) Sketch 8051 interfacing diagram to interface 4 LED’s and 4 switches. Interface switches to 6M
port 0 and LED to port 1 upper nibble. Develop an ALP to read status of switches and
operate LED’s as per switch status.
Ans: 3M-
correct
interfaci
ng
diagram,
3M-
correct
program
NOTE: Program may change. Please check the logic and understanding of students
Page 22
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
SUMMER-19 EXAMINATION
Subject Name: Microcontroller and applications Model Answer Subject Code: 22426
23
ORG 0000H
MOV P0, #0F0H ; Make P0 as input
START: MOV A, P0 ; Read status of the key
CJNE A, #0F0H, CHECK1 ; Key pressed branch from Port 0
SJMP START ; Jump to start
CHECK1: LCALL DELAY ; Call Key debounce delay
MOV A, P0 ; Read data from port 0
CPL A ; Complement A
MOV P1, A ; Send data to LED
SJMP START ; Jump to start
Page 23
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
SUMMER-19 EXAMINATION
Subject Name: Microcontroller and applications Model Answer Subject Code: 22426
24
Marks
a) Develop an ALP to read temperature from LM 35 sensor. Draw the interfacing diagram 6M
with 8051
Ans: NOTE: Program may change. Please check the logic and understanding of students 3M–
Correct
diagram,
3 M-
Correct
Program
Program:
ORG 0000H
ADDR_A BIT P2.0
ADDR_B BIT P2.1
ADDR_C BIT P2.2
SC BIT P2.3
ALE BIT P2.4
OE BIT P2.5
EOC BIT P2.6
Page 24
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
SUMMER-19 EXAMINATION
Subject Name: Microcontroller and applications Model Answer Subject Code: 22426
25
MY_DATA EQU P1
ORG 0000H
MOV MY_DATA,#0FFH ; make P1 as input
SETB EOC ; make EOC an input
CLR ALE ; clear ALE
CLR SC ; clear SC
CLR OE ;clear OE
CLR ADDR_C ; C=0
CLR ADDR_B ; B=0
CLR ADDR_A ; A=0(select channel 0)
ACALL DELAY
SETB ALE ;latch address
ACALL DELAY
BACK: SETB SC ;start conversion
ACALL DELAY
CLR ALE
CLR SC
HERE: JB EOC,HERE ; wait
HERE1: JNB EOC,HERE1
SETB OE
ACALL DELAY
MOV A, MY_DATA
MOV P1, A
CLR OE
SJMP BACK
Page 25
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
SUMMER-19 EXAMINATION
Subject Name: Microcontroller and applications Model Answer Subject Code: 22426
26
b) Develop a program to toggle the LED’s after every 500m sec connected to P1.0 and P1.1 6M
after receiving the external interrupt on INT0.
Ans: 4 M-
correct
NOTE: Program may change. Please check the logic and understanding of students
program
Solution : ,1 M-
Crystal freq=11.0592MHz delay
Timer frequency=11.0592MHz/12 calculati
Time=12/11.0592MHz=1.085μs on,1M-
For delay of 50 ms, commen
ts
50ms/1.085μs=46082
Therefore, count to be loaded in TH1 and TL1 can be calculated as
65536 - 46082 =19454D=4BFEH
Note: If crystal frequency is taken as 12MHz then count to be loaded in TH1 and TL1
will be 3CB0h.
Program:
ORG 00 H
LJMP MAIN
ORG 0003 H
MOV TMOD, #10H ; Timer1, mode 1
HERE : MOV R0, #0AH ; Counter for 500ms (50*10)delay
BACK : MOV TL1, # B0H ; load count value in TL1
MOV TH1, #3CH ; load count value in TH1
Page 26
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
SUMMER-19 EXAMINATION
Subject Name: Microcontroller and applications Model Answer Subject Code: 22426
27
SWAP A
ADD C
MUL AB
MOV A, R0
MOVX A, @ A + DPTR.
MUL AB
Description: the multiplicand and the multiplier must be in A and B registers. After
multiplication if the result is 8 bit it will be in the accumulator and if the result is larger than
8 bit ,lower byte of result will be in accumulator and higher byte will be in register B.
Example :MOV A,#10H
MOV B,#02 H
MUL AB
Page 27
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
SUMMER-19 EXAMINATION
Subject Name: Microcontroller and applications Model Answer Subject Code: 22426
28
Description: Compare the contents of the accumulator with the 8 bit data in memory
address mentioned in the instruction and if they are not equal then jump to the relative
address mentioned in the instruction.
Example: CJNE A, 04H, UP: Compare the contents of the accumulator with the contents of
04H memory and if they are not equal then jump to the line of instruction where UP label is
mention
MOV A,R0
Description: this instruction copies the contents of source register R0 into accumulator. The
register R0 remains unaffected.
Example: Before Execution A=43 H, R0=32 H
After execution A=32 H, R0-32H
Description: Copy the contents of code memory pointed by the sum of Accumulator and
DPTR to the Accumulator
MOVC is a move instruction, which moves data from the code memory space. The
address operand in this example is formed by adding the content of the DPTR register to
the accumulator value. Here the DPTR value is referred to as the base address and the
accumulator value is referred to as the index address.
Page 28
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
SUMMER-19 EXAMINATION
Subject Name: Microcontroller and applications Model Answer Subject Code: 22426
29
Page 29
22426
11920
3 Hours / 70 Marks Seat No.
P.T.O.
22426 [2]
Marks
2. Attempt any THREE of the following: 12
a) Compare any three derivatives of 8051 microcontroller on
the basis of RAM, ROM, Timer and Interrupts.
b) Draw and explain the interfacing of DAC to 8051.
c) Describe 8051 microcontroller as boolean processor.
d) Explain function of following pins of 8051
(i) pin no 31
(ii) pin 29
(iii) pin 21-28
Ans: 1.Easy to interface with all Microprocessors or works Stand alone. 1M each
2.Eight channel 8-bit ADC module. ( Any 2
3.Can measure up to 8 Analog values. points)
4.On chip Clock not available, external Oscillator is needed (Clock).
5.Digital output various from 0 to 255, operating power is 15mW, conversion time
100us.
d) List specifications of 8051 microcontroller. 2M
Page 1/ 17
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
__________________________________________________________________________________________________
5) Four 8-bit bi- directional input/output ports Four 8-bit bi- directional input/ output
ports.
6) Programmable serial ports i.e. One UART (serial port)
7) Two 16- bit timers- Timer 0& Timer 1
8) Works on crystal frequency of 11.0592 MHz
9) Has power down and idle mode in microcontroller when no operation is performed.
10) Six interrupts are available.
e) List any two instructions which makes accumulator zero individually. 2M
12-
Q.2 Attempt any THREE of the following: Total
Marks
Compare any three derivatives of 8051 microcontroller on the basis of RAM,ROM,Timer
a) 4M
and Interrupts.
Ans: 1M
89v51 RD2
Features 8051 8052 89c52 8031 8751 each
(Any
RAM 128 256 256 128 128 1k 4
4K 8K 8K 4K (UV- 664KB Points
ROM 0
(mask (EPROM) (Flash) EPROM) (FLASH)(Fla )
Page 2/ 17
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
__________________________________________________________________________________________________
ROM) sh)
TIMER 2 3 3 2 2 3
INTERRUPTS 6 8 8 6 6 8
b) Draw and explain the interfacing of DAC to 8051. 4M
Ans: Diagram: 2M
Microcontroller generates output which is in digital form but many controlling system 2M
requires analog signal as they don't accept digital data thus making it necessary to use Expla-
DAC which converts digital data into equivalent analog voltage. nation
In the figure shown, we use 8-bit DAC 0808. This IC converts 8 bit digital data into
equivalent analog current. Hence we require an I to V converter to convert this current
into equivalent voltage.
c) Describe 8051 microcontroller as boolean processor. 4M
Ans: 8051 processor is a CPU that can perform some operation on a data and gives the output. 4M
The 8051 processor contains a complete Boolean processor for single-bit operations.
The internal RAM contains 128 addressable bits, and the SFR space supports up to 128
other addressable bits.
All port lines are bit-addressable, and each can be treated as a separate single-bit port.
The instructions that access these bits are not only conditional branches but also a
complete set of move, set, clear, complement, OR, and AND instructions.
The 8051 instruction set is optimized for the one bit operations. The Boolean processor
provides direct support for bit manipulation and testing of individual bit allows the use of
single bit variable to perform logical operations therefore 8051 can be used to solve
Boolean expression. Bits may be set or cleared in a single instruction.
Eg: CLR C means clear the carry bit
SETB 20h means set the memory bit with bit address 20h.
d) Explain function of following pins of 8051
(i) Pin 31
4M
(ii) Pin 29
(iii) Pin 21-28
Ans: i) Pin 31-EA : It is and active low I/P to 8051 microcontroller. When (EA)= 0, then 1M- EA
8051 microcontroller access from external program memory (ROM) only. When (EA) = 1,
Page 3/ 17
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
__________________________________________________________________________________________________
then it access internal and external program memories (ROMS). 1M-
ii) Pin 29- PSEN : This is an output pin. PSEN stands for “program store enable.” It is active PSEN
low O/P signal. It is used to enable external program memory (ROM). When [PSEN(bar)]=
2M-Pin
0, then external program memory becomes enabled and micro controller read content of
21-28
external memory location. Therefore it is connected to (OE) of external ROM.
iii) Pin 21-28: A8 – A15 : These pins are known as Port 2. It serves as I/O port. Each pin is 1M
bidirectional Input /Output with internal pull – up resistors. Besides the Input /Output, when Port 2
external memory is interfaced, PORT 2 pins act as the higher-order address bus. (A8-A15) & 1M
A8 -
A15
12-
Q.3 Attempt any THREE of the following: Total
Marks
Develop Assembly Language program (ALP) to find the largest number in a block of 10
a) 4M
numbers stored at location 40H onwards in internal RAM.
Ans: (NOTE: Marks to be given for any other correct logic used by students.) 4M
ORG 0000H for
MOV R1, #0AH ; Initialize Byte Counter correc
MOV R0, #40H ; Initialize source pointer R0 to 40H
t
DEC R1 ; decrement counter by one
MOV 60H, @R0 ;Read First Byte progr
UP: INC R0 ; Increment the contents of R0 am
MOV A, @R0 ; Read second number
CJNE A, 60H, DN ;compare the first two numbers, if not equal go to DN
AJMP LARGE ;else go to LARGE
DN: JC LARGE ;check carry
MOV 60H, A ;Store largest number to 60H
LARGE: DJNZ R1, UP ;decrement the counter by one, if count ≠ 0, then go to UP
END
Largest No. is saved in memory 60H. Assume any location to store the result.
OR
MOV R1, #0AH ; initialize the counter
MOV R0, #40H ; initialize the memory pointer
DEC R1 ; decrement counter by one
MOV A,@R0 ; load number in accumulator
MOV B, A ; move that number to register B
UP: INC R0 ; increment the memory pointer
MOV A,@R0 ; read the next number in A
CJNE A, B, DOWN ; compare the first two numbers, if not equal go to DOWN
AJMP NEXT ; else go to NEXT
DOWN: JC NEXT ; if number in A is greater then go to NEXT
MOV B, A ; else move the number in register B
NEXT: DJNZ R1, UP ; decrement the counter by one, if count ≠ 0, then go to UP
INC R0 ; increment the memory pointer
MOV A,B
MOV 50H, A ; store result at memory location 50H(Assume any location)
HERE: SJMP HERE
Page 4/ 17
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
__________________________________________________________________________________________________
b) Sketch the internal memory organization in 8051. 4M
Ans: Daigram: 4M
for
neat
Sketc
h with
label
2M
functi
on of
each
Page 5/ 17
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
__________________________________________________________________________________________________
bit
Page 6/ 17
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
__________________________________________________________________________________________________
Q.4 Attempt any THREE of the following : 12
Marks
a) Draw the format of TCON register of 8051 and describe the function of each bit of it. 4M
Ans: TCON: TIMER/COUNTER CONTROL REGISTER.BIT ADDRESSABLE 2M
forma
TF1 TR1 TF0 TR0 IE1 IT1 IE0 IT0 t
TF1 TCON. 7 Timer 1 overflows flag. Set by hardware when the Timer/Counter 1
Overflows. Cleared by hardware as processor vectors to the interrupt
Service routine. 2M
TR1 TCON. 6 Timer 1 run control bit. Set/cleared by software to turn Timer/Counter1 Functi
ON/OFF.
on of
TF0 TCON. 5 Timer 0 overflow flag. Set by hardware when the Timer/Counter 0
Overflows. Cleared by hardware as processor vectors to the service routine. each
TR0 TCON. 4 Timer 0 run control bit. Set/cleared by software to turn Timer/Counter 0 bit
ON/OFF.
IE1 TCON. 3 External Interrupt 1 edge flag. Set by hardware when External Interrupt edge is
detected. Cleared by hardware when interrupt is processed.
IT1 TCON. 2 Interrupt 1 type control bit. Set/cleared by software to specify
falling edge/low level triggered External Interrupt.
IE0 TCON. 1 External Interrupt 0 edge flag. Set by hardware when External
Interrupt edge detected. Cleared by hardware when interrupt is processed.
IT0 TCON. 0 Interrupt 0 type control bit. Set/cleared by software to
Specify falling edge/low level triggered External Interrupt
Ans: 8051 micro controller communicate with another peripheral device through RXD and TXD pin 2M
of port3.controller have four mode of serial communication. mode
1. Serial Data Mode-0 (Baud Rate Fixed) descri
In this mode, the serial port works like a shift register and the data transmission works ption
synchronously with a clock frequency of fosc /12. Serial data is received and transmitted through in
RXD. 8 bits are transmitted/ received at a time. Pin TXD outputs the shift clock pulses of
short
frequency fosc /12, which is connected to the external circuitry for synchronization. The shift
frequency or baud rate is always 1/12 of the oscillator frequency. (½
2. Serial Data Mode-1 (standard UART mode)(baud rate is variable)
mark
In mode-1, the serial port functions as a standard Universal Asynchronous Receiver Transmitter
for
(UART) mode. 10 bits are transmitted through TXD or received through RXD. The 10 bits
each
consist of one start bit (which is usually '0'), 8 data bits (LSB is sent first/received first), and a
mode)
stop bit (which is usually '1'). Once received, the stop bit goes into RB8 in the special function
register SCON. The baud rate is variable &
3. Serial Data Mode-2 Multiprocessor (baud rate is fixed) 2M
In this mode 11 bits are transmitted through TXD or received through RXD. The various bits are forma
as follows: a start bit (usually '0'), 8 data bits (LSB first), a programmable 9 th (TB8 or RB8)bit t with
and a stop bit (usually '1'). While transmitting, the 9 th data bit (TB8 in SCON) can be assigned functi
the value '0' or '1'. For example, if the information of parity is to be transmitted, the parity bit (P) on
in PSW could be moved into TB8.On reception of the data, the 9 th bit goes into RB8 in 'SCON',
Page 7/ 17
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
__________________________________________________________________________________________________
while the stop bit is ignored. The baud rate is programmable to either 1/32 or 1/64 of the
oscillator frequency.
f baud = (2 SMOD /64) fosc
4. Serial Data Mode-3 - Multi processor mode(Variable baud rate)
In this mode 11 bits are transmitted through TXD or received through RXD.The various bits are:
a start bit (usually '0'), 8 data bits (LSB first), a programmable 9 th bit and a stop bit (usually '1').
Mode-3 is same as mode-2, except the fact that the baud rate in mode-3 is variable (i.e., just as in
mode-1).
f baud = (2SMOD /32) * ( fosc/ 12 (256-TH1))
SM0 SM1 SM2 REN TB8 RB8 TI RI
Ans: Diagram: 2M
for
diagra
m
2Mar
ks for
Page 8/ 17
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
__________________________________________________________________________________________________
functi
on of
two
pins(
1Mar
k each
pin
functi
on)
RS: RS is the register select pin. We need to set it to 1, if we are sending some data to be
displayed on LCD. And we will set it to 0 if we are sending some command instructions during
the initializing sequence like clear the screen etc.
EN: The enable pin is used by the LCD to latch information presented to its data pins. When
data is supplied to the data pins, a high-to-low pulse must be applied to this pin in order for the
LCD to latch in the data present at the data pins. This pulse must be a minimum of 450ns wide.
d) Explain the use of following assembler directives.
(i) EQU 4M
(ii) ORG
Ans: 2
(i) EQU: Equate Marks
It is used to define constant without occupying a memory location. for
each
Syntax: Label EQU Numeric value
directi
By means of this directive, a numeric value is replaced by a symbol. ve
For e.g. MAXIMUM EQU 99 After this directive every appearance of the label MAXIMUM in
the program, the assembler will interpret as number 99
(MAXIMUM=99).
Page 9/ 17
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
__________________________________________________________________________________________________
Ans: 4
Marks
Pin Name Alternate Function
for 8
P3.0 RXD Serial input line pins(
½
P3.1 TXD Serial output line mark
for
P3.2 ̅̅̅̅̅̅̅ External interrupt 0 each
pin
P3.3 ̅̅̅̅̅̅̅ External interrupt 1
functi
P3.4 T0 Timer0 external input on)
Ans: sketch
-3M
Expla
Interfacing keypad nation
Fig. shows how to interface the 4 X 4 matrix keypad to two ports in microcontroller. The rows – 3M
are connected to an output port and the columns are connected to an input port.
To detect a pressed key, the microcontroller grounds all rows by providing 0 to the output
latch, and then it reads the columns. If the data read from the columns is D3-D0=1111, no key
has been pressed and the process continues until a key press is detected. However, if one of the
Page 10/ 17
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
__________________________________________________________________________________________________
column bits has a zero, this means that a key press has occurred. For example, if D3-D0=1101,
this means that a key in the D1 column has been pressed.
After a key press is detected, the microcontroller will go through the process of identifying the
key. Starting with the top row, the microcontroller grounds it by providing a low to row D0
only; then it reads the columns.
If the data read is all 1s, no key in that row is activated and the process is moved to the next row.
It grounds the next row, reads the columns, and checks for any zero. This process continues until
the row is identified. After identification of the row in which the key has been pressed, the next
task is to find out which column the pressed key belongs to.
Differentiate between
(b) (i) Harvard and Von-neuman architecture 6M
(ii) Microprocessor and Microcontroller
Ans: Von
i) Harvard Architecture and Von-neuman architecture Nuem
ann
Harva
rd 3
M
(any
three
points
)
Develop an ALP to generate square wave of 3 KHz using 8051 microcontroller on port pin
(c) 6M
P2.3 (Assume Xtalfreqn=12 MHz)
Page 12/ 17
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
__________________________________________________________________________________________________
L2: MOV TL0, # 71 H ; Load TL register with LSB of count
MOV TH0, # 0FB H ; load TH register with MSB of count
SETB TR0 ; start timer 0
L1: JNB TF0, L1 ; poll till timer roll over
CLR TR0 ; stop timer 0
CPL P2.3 ; complement port 2.3 line to get high or low
CLR TF0 ; clear timer flag 0
SJMP L2 ; re-load timer with count as mode 1 is not auto reload
12Tot
Q.6 Attempt any TWO of the following: al
Marks
Draw interfacing of stepper motor with 8051 and write an ALP to rotate it in clockwise
(a) 6M
direction.
Ans: Diagram: 3M
Progr
am-
Page 13/ 17
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
__________________________________________________________________________________________________
3M
(b) Describe with sketches the procedure to troubleshoot the traffic light controller. 6M
5) Violations happen when user expectancy is not met. A user like pedestrian does not
expect to stand for more than a minute or two at a signal, when this user expectancy is
not met, the pedestrian tries to venture out and violate the signal
6) The smooth movement of conflicting vehicles is determined by the availability of gaps
in traffic. This is true for both pedestrians and vehicular traffic. Understanding of gaps is
important for justifying the type of traffic control device, including a traffic signal.
Points to consider for determining signal timings
1) The signal operational parameters are reviewed and updated (if needed) on a regular
basis to maximize the ability of the traffic control signal to satisfy current traffic
demands
Page 14/ 17
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
__________________________________________________________________________________________________
2) Geometry of the intersection is the next step in the signal timing process. Determining
the lane use (which traffic mode), dedicated vs. shared lane, type of roads interacting
(arterial with arterial etc.), type of road infrastructure (ramps, one way streets, etc.) will
impact the timing.
3) Basic signal timing parameters comes next. Pedestrian walk times, flashing don’t walk,
yellow time, all red clearance interval, detector gap times all need to calculated or
established.
4) Identify bottlenecks, review conditions, conduct warrant analysis and use engineering
judgment in determining traffic signal installation
5) Determine AM and PM peak hour traffic volumes.
6) Condition diagram which includes roadway geometrics, parking, driveways, sidewalks,
signing, pavement markings, development of intersection quadrants, and any other
features pertinent to the study peak hour delay study
7) A conflict analysis
8) Capacity analysis of the intersection for current and future years using growth
(c) Draw and explain Internal port structure of Port 0 and Port 1 of 8051 microcontroller. 6M
Page 15/ 17
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
__________________________________________________________________________________________________
Ans:
Port-0 can be configured as a normal bidirectional I/O port or it can be used for address/data
Port 0
interfacing for accessing external memory. When control is '1', the port is used for address/data
– 3M
interfacing. When the control is '0', the port can be used as a normal bidirectional I/O port.
Port 1
Let us assume that control is '0'. When the port is used as an input port, '1' is written to the latch. – 3M
In this situation both the output MOSFETs are 'off'. Hence the output pin floats. This high
impedance pin can be pulled up or low by an external source. When the port is used as an output
port, a '1' written to the latch again turns 'off' both the output MOSFETs and causes the output
pin to float. An external pull-up is required to output a '1'. But when '0' is written to the latch, the
pin is pulled down by the lower MOSFET. Hence the output becomes zero.
When the control is '1', address/data bus controls the output driver MOSFETs. If the
address/data bus (internal) is '0', the upper MOSFET is 'off' and the lower MOSFET is 'on'. The
output becomes '0'. If the address/data bus is '1', the upper transistor is 'on' and the lower
transistor is 'off'. Hence the output is '1'. Hence for normal address/data interfacing (for external
memory access) no pull-up resistors are required.
Port-0 latch is written to with 1's when used for external memory access.
Page 16/ 17
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION
(Autonomous)
(ISO/IEC - 27001 - 2013 Certified)
__________________________________________________________________________________________________
Port-1 does not have any alternate function i.e. it is dedicated solely for I/O interfacing. When
used as output port, the pin is pulled up or down through internal pull-up. To use port-1 as input
port, '1' has to be written to the latch. In this input mode when '1' is written to the pin by the
external device then it read fine. But when '0' is written to the pin by the external device then the
external source must sink current due to internal pull-up. If the external device is not able to sink
the current the pin voltage may rise, leading to a possible wrong reading.
Page 17/ 17