Describe power down mode and ideal mode of 8051 with circuit diagram . which SFR is used to set these modes and draw the same.

1 Answer

Answer :

IDLE MODE In the Idle mode, the internal clock signal is gated off to the CPU, but not to the Interrupt, Timer and Serial Port functions. The CPU status is preserved in its entirety, the Stack Pointer, Program Counter, Program Status Word, Accumulator, and all other registers maintain their data during Idle. The port pins hold the logical state they had at the time idle mode was activated. ALE and PSEN hold at logic high levels. 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 terminated. ii) Hard ware reset: that is signal at RST pin clears IDEAL bit IN PCON register directly. At this time, CPU resumes the program execution from where it left off.


POWER DOWN MODE An instruction that sets PCON.1 causes that to be the last instruction executed before going into the Power Down mode. In the Power Down mode, the on-chip oscillator is stopped. With the clock frozen, all functions are stopped, but the on-chip RAM and Special Function Register are maintained held. The port pins output the values held by their respective SFRS. ALE and PSEN are held low. Termination from power down mode: an exit from this mode is hardware reset. Reset defines all SFRs but doesn’t change on chip RAM

PCON (Power Control Register) SFR is used to set these modes.

image

Related questions

Description : List SFR in 8051.

Last Answer : ACC and B registers - 8 bit each DPTR : [DPH:DPL] - 16 bit combined PC : Program Counter - 16 bits Stack pointer SP - 8 bit PSW : Program Status Word Port Latches ... , serial control Timer Registers (TCON,TMOD,TL0/1,TH0/1) Power control Interrupt Enable, Interrupt Priority

Description : Draw the format of TCON register of 8051 and describe the function of each bit of it.

Last Answer : TCON: TIMER/COUNTER CONTROL REGISTER.BIT ADDRESSABLE  TF1 TCON. 7 Timer 1 overflows flag. Set by hardware when the Timer/Counter 1 Overflows. Cleared by hardware as processor ... 0 type control bit. Set/cleared by software to Specify falling edge/low level triggered External Interrupt

Description : Draw the format of PSW register of 8051 microcontroller and explain the function of each bit.

Last Answer : 1. CY: Carry flag. This flag is set whenever there is a carry out from the D7 bit after an 8 bit addition or subtraction. It can also be set to 1 or 0 directly by instructions such as SETB C and ... the A register contains an odd number of 1s, then P=1. P=0 if A has an even number of 1s.

Description : Draw and explain Internal port structure of Port 0 and Port 1 of 8051 microcontroller.

Last Answer : Port-0 can be configured as a normal bidirectional I/O port or it can be used for address/data interfacing for accessing external memory. When control is '1', the port is used for address/data ... is not able to sink the current the pin voltage may rise, leading to a possible wrong reading.

Description : Draw interfacing of 16 × 2 LCD with 8051 and state the function of EN and RS of LCD

Last Answer : Diagram: 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 ... the LCD to latch in the data present at the data pins. This pulse must be a minimum of 450ns wide.

Description : Draw and explain the interfacing of DAC to 8051.

Last Answer : Diagram:  * Microcontroller generates output which is in digital form but many controlling system requires analog signal as they don't accept digital data thus making it necessary to use DAC ... current. Hence we require an I to V converter to convert this current into equivalent voltage. 

Description : Describe serial communication in 8051. Explain the use of SCON register.

Last Answer : 8051 micro controller communicate with another peripheral device through RXD and TXD pin of port3.controller have four mode of serial communication.  1. Serial Data Mode-0 (Baud Rate Fixed) In this mode ... .0 Receive interrupt flag. Set by hardware halfway through the stop bit time in mode 1. 

Description : Describe 8051 microcontroller as boolean processor.

Last Answer : * 8051 processor is a CPU that can perform some operation on a data and gives the output. * The 8051 processor contains a complete Boolean processor for single-bit operations. * The internal RAM contains 128 ... CLR C means clear the carry bit SETB 20h means set the memory bit with bit address 20h.

Description : State any four important features of 8051 microcontroller.

Last Answer : Features of 8051 microcontroller:  1) 8- bit data bus and 8- bit ALU. 2) 16- bit address bus - can access maximum 64KB of RAM and ROM. 3) On- chip RAM -128 bytes (Data ... 0 and Timer 1, two external hardware interrupts- INT0 and INT1, Serial communication interrupt for both receive and transmit.

Description : Explain with sketch the interfacing of 4 ×4 matrix keypad with 8051 microcontroller.

Last Answer : Interfacing keypad Fig. shows how to interface the 4 X 4 matrix keypad to two ports in microcontroller. The rows are connected to an output port and the columns are connected to an input port. To ... key has been pressed, the next task is to find out which column the pressed key belongs to.

Description : State the alternate pin functions of port 3 of 8051.

Last Answer :  the alternate pin functions of port 3 of 8051 :

Description : Explain following instructions of 8051. (i) ADDC (ii) L CALL

Last Answer : (i) ADDC: The ADDC instruction adds a byte value and the value of the carry flag to the accumulator. The results of the addition are stored back in the accumulator. Several of the flag ... . Then the program counter is loaded with the new address and control is transferred to the subroutine. 

Description : Explain processes of interrupt enabling and disabling in 8051.

Last Answer : Interrupts are the events that temporarily suspend the main program, pass the control to the external sources and execute their task. It then passes the control to the main program where it had left off. ... interrupts. Its bit sequence and their meanings are shown in the following figure.

Description : Explain function of following pins of 8051 (i) Pin 31 (ii) Pin 29 (iii) Pin 21-28 

Last Answer : i) Pin 31-EA : It is and active low I/P to 8051 microcontroller. When (EA)= 0, then 8051 microcontroller access from external program memory (ROM) only. When (EA) = 1, then it access internal ... /Output, when external memory is interfaced, PORT 2 pins act as the higher-order address bus. (A8-A15)

Description : List specifications of 8051 microcontroller.

Last Answer : 1) 8- bit data bus and 8- bit ALU. 2) 16- bit address bus - can access maximum 64KB of RAM and ROM. 3) On- chip RAM -128 bytes (Data Memory) 4) On- chip ROM - 4 KB ( ... 0592 MHz 9) Has power down and idle mode in microcontroller when no operation is performed. 10) Six interrupts are available.

Description : List out features of any four addressing modes of 8051.

Last Answer : 1.Immediate addressing mode: In this Immediate Addressing Mode, the data is provided in the instruction itself. The data is provided immediately after the opcode. These are some examples of Immediate Addressing Mode. MOVA ... us see some examples of this mode. MOV 0E5H, @R0 MOV @R1, 80H

Description : List out any two instructions of following addressing modes: (i) Immediate addressing. (ii) Register addressing.

Last Answer : (i) Immediate addressing instructions: 1. MOV A, #36H 2. MOV DPTR, #27A2H (ii) Register addressing. 1. MOV A, R0 2. MOV R7, A

Description : Draw block diagram of digital frequency meter in time mode and describe its operation.

Last Answer : OR Operation: The input signal is amplified and converted to a square wave by a Schmitt Trigger circuit. In this diagram the square wave is differentiated and clipped to ... thereby closing it. The decimal counter and display unit output correspond to the number of input pulses. 

Description : Draw the circuit diagram of class AB power amplifier and describe its working.

Last Answer : Circuit diagram: Circuit Description: The circuit consists of two center-tapped transformers T1 and T2, two identical transistors Q1 and Q2 , Resistor R and diode D. The DC voltage ... and Q2 conduct, as soon as input cross zero, negative sinusoidal voltage will appear across load.

Description : Describe the different modes of fibre optic cable with neat diagram. Compare fibre optic cable with UTP cable.

Last Answer : STEP-INDEX MULTIMODE FIBER has a large core, up to 100 microns in diameter. As a result, some of the light rays that make up the digital pulse may travel a direct route, whereas others ... optic cables. Fiber is more expensive than copper due to the light emitting equipment and cost.

Description : Draw the format of SCON register.

Last Answer : SM0 SCON.7 Serial port mode specifier SM1 SCON.6 Serial port mode specifier SM2 SCON.5 Used for multiprocessor communication (Make it 0.) REN SCON.4 Set/ cleared by software to enable/ ... flag. Set by hardware halfway through the stop bit time in mode 1. Must be cleared by software.

Description : Draw a circuit diagram of R.C. series circuit. Draw impedance triangle and power triangle for same circuit. 

Last Answer : Draw a circuit diagram of R.C. series circuit. Draw impedance triangle and power triangle for same circuit. 

Description : Draw the circuit diagram and describe the working principle of full wave bridge rectifier. Draw its waveforms. 

Last Answer : During the first half cycle : During the first half cycle of the input voltage, the upper end of the transformer secondary winding is positive with respect to the lower end. Thus during the first ... , terminal D, diode D4, and terminal A back to transformer and output will positive half cycle.

Description : Draw the circuit diagram of multi range AC voltmeter and describe its working

Last Answer : The above circuit looks like a multi range AC voltmeter. We know that, we will get AC voltmeter just by placing rectifier in series (cascade) with DC voltmeter. The above circuit was created ... any two points of an electric circuit, by connecting the switch, S to the desired voltage range.

Description : Draw and describe circuit diagram of centre tapped rectifier with LC filter along with its input and output waveforms.

Last Answer : Explanation: A centre- tap full wave rectifier drive produces the rectified voltage and it drives the LC filter. We know that the series inductor filter is preferred for low values of load resistance ( ... load RL. The output voltage waveforms are similar to that as shown in figure above.  

Description : Draw the circuit diagram of complementary symmetry Class B push-pull amplifier and describe its working.

Last Answer : Diagram of complementary symmetry Class B push-pull amplifier: Working: The above circuit employs a NPN transistor and a PNP transistor connected in push pull configuration. When the input ... of class B, this circuit is termed as Complementary symmetry push pull class B amplifier.

Description : Describe control of a single lamp from three places. Draw the relevant circuit diagram. 

Last Answer : Single lamp control from three places-  It consists of two way switches & intermediate switch, the circuit diagram is as shown in figure. We require two 2-way switches and one intermediate switch and a lamp ... position of any one switch is changed, then the lamp will be turned off.

Description : What is the address range of SFR Register bank? a) 00H-77H b) 40H-80H c) 80H-7FH d) 80H-FFH

Last Answer : c) 80H-7FH

Description : What is the Address (SFR) for TCON, SCON, SBUF, PCON and PSW respectively? a) 88H, 98H, 99H, 87H, 0D0H. b) 98H, 99H, 87H, 88H, 0D0H

Last Answer : a) 88H, 98H, 99H, 87H, 0D0H

Description : What is the address range of SFR Register bank? a) 00H-77H b) 40H-80H c) 80H-7FH d) 80H-FFH

Last Answer : d) 80H-FFH

Description : opposite: smash brosas much as smash bros is an awful game here are its redeeminf factors- old modes are great- story mode is no longer dishonored after u play it the third time- the unbalanced fighters are a true plus for the game?

Last Answer : contluigi is a good mario swap for the gamesmashdown on low numbers enough saidanswr: agree smash five 7 of 10

Description : Traditional mode of irrigation are practiced in India because, A. They are cheap. B. They are reliable. C. Indians don’t use other modes as they are expensive. D. They are available abundantly.

Last Answer : A. They are cheap. B. They are reliable.

Description : Given below are four methods (A-D) and their modes of action (i-iv) in achieving contraception. Select their correct matching from the four options that follow. Method Mode of Action A. The pill (i) Prevents sperms reaching cervix B. Condom ... D - (ii) (d) A - (iv), B - (i), C - (ii), D - (iii)

Last Answer : A – (iii), B – (i), C – (iv), D – (

Description : A mode filter is a device that attenuates specific modes propagating in the core of an optical fiber. What mode propagating along single mode fibers do mode filters eliminate?

Last Answer : Second-order mode.

Description : As the core and cladding modes travel along the fiber, mode coupling occurs. What is mode coupling?

Last Answer : Mode coupling is the exchange of power between two modes.

Description : Modes that are bound at one wavelength may not exist at longer wavelengths. What is the wavelength at which a mode ceases to be bound called?

Last Answer : Cutoff wavelength

Description : How many longitudinal modes can fall within a laser’s gain bandwidth? ∙ a. 2 ∙ b. 5 ∙ c. 9 ∙ d. No fixed limit, dependent on bandwidth and mode spacing

Last Answer : ∙ d. No fixed limit, dependent on bandwidth and mode spacing

Description : In serial communication modes, mode 1 the Baud rate = a) BR=2SMOD/32 * (Timer 0 over flow rate) b) BR=2SMOD/16 * (Timer 1 over flow rate) c) BR=2SMOD/16 * (Timer 0 over flow rate) d) BR=2SMOD/32 * (Timer 1 over flow rate)

Last Answer : b) BR=2SMOD/16 * (Timer 1 over flow rate)

Description : In 8096, mode ____ of serial port are ___ modes commonly used for ____ communications. a) 1, 8bit, single processor b) 0, 7bit, multiple microcontroller c) 2, 9 bit, multiple processors d) 3, 8 bit, multiple microcontroller

Last Answer : a) 1, 8bit, single processor

Description : In 8255, under the I/O mode of operation we have __ modes. Under which mode will have the following features i) A 5 bit control port is available. ii) Three I/O lines are available at Port C. a) 3, Mode2 b) 2, Mode 2 c) 4, Mode 3 d) 3, Mode 2

Last Answer : a) 3, Mode2

Description : In 8096, mode ____ of serial port are ___ modes commonly used for ____ communications. a) 1, 8bit, single processor b) 0, 7bit, multiple microcontroller c) 2, 9 bit, multiple processors d) 3, 8 bit, multiple microcontroller

Last Answer : c) 2, 9 bit, multiple processors

Description : Describe with sketches the procedure to troubleshoot the traffic light controller.

Last Answer : Considerations of Traffic Signal  1) Traffic light may have sensors integrated to provide real time traffic information  2) Based on the traffic information provided by the sensor, the duration of the ... 8) Capacity analysis of the intersection for current and future years using growth

Description : Use Voltmeter, ammeter, wattmeter to determine active, reactive and apparent power consumed in given R—C series circuit, draw phasor diagram.

Last Answer : Use Voltmeter, ammeter, wattmeter to determine active, reactive and apparent power consumed in given R-C series circuit, draw phasor diagram. Practical Significance In the industry environment ... autotransformer position to zero and switch OFF the supply. 8. Draw the phasor diagram.

Description : Use Voltmeter, ammeter, wattmeter to determine active, reactive and apparent power consumed in given R-L series circuit, draw phasor diagram.

Last Answer : Practical Significance In the industry environment Electrical Engineering diploma graduate are expected to measure basic parameters like voltage, frequency, time period etc. for R-L series circuits. Therefore ... /varying L. 7. Draw the phasor diagram for each of reading for verification.

Description : Draw the circuit diagram for:- i) Measurement of active power in 3-phase load circuit using two wattmeter. ii) Measurement of reactive power in 3-phase load circuit using one wattmeter.

Last Answer : (i) Measurement of active power in 3- phase load circuit using two- wattmeter: (ii) Measurement of reactive power in 3- phase load circuit using one wattmeter

Description : Draw the single stage class A power amplifier circuit diagram and draw the input and output waveforms.

Last Answer : Circuit diagram:- Input / Output waveforms:-

Description : Draw and explain the circuit diagram for measurement of single phase power using dynamometer type wattmeter. 

Last Answer : Circuit diagram for measurement of single phase power using dynamometer type wattmeter: Explanation: It consists of two stationary coils, called current coils and one moving coil, called voltage or ... i.e. power. The meter can be calibrated directly to indicate the power in watts. 

Description : Draw neat labeled diagram of single phase AC locomotive showing its various equipments of power circuit and give function of each equipment used in power circuit.

Last Answer : Functions of equipment: 1) circuit breaker: disconnects the locomotive equipment from the supply in the event of fault in the equipment / loco. 2) On load tap changer, used to control the ... 6) Traction motor: operates as per the required operating characteristics to take on the traction load.

Description : Draw the power and control circuit diagram for forward — stop — Reverse type DOL starter for 3 phase induction motor.

Last Answer : Draw the power and control circuit diagram for forward — stop — Reverse type DOL starter for 3 phase induction motor.