51 MCU 3 external interrupt sources interrupt response programming example

Publisher:数据探险家Latest update time:2017-10-12 Source: eefocus Reading articles on mobile phones Scan QR code
Read articles on your mobile phone anytime, anywhere

A system has three external interrupt sources 1, 2, and 3. When an interrupt source becomes low level, the CPU is required to process it. Their priority processing order from high to low is 3, 2, and 1. The entry addresses of the interrupt processing program are 1000H, 1100H, and 1200H respectively. Try to write the main program and interrupt service program (just go to the entry of the corresponding interrupt processing program).

Answer: If only 3 external interrupt sources are connected to the /INT0 pin


                     ORG       0000H

                     LJMP      MAIN

                     ORG       0003H 

                     LJMP INT_EX0


                     ORG 0030H


MAIN: CLR IT0; Use low level active interrupt


                     SETB EX0 ; Enable external interrupt 0


                     SETB OF                


                     ; Insert user program

WAIT: MOV PCON,#01H; MCU enters sleep mode and waits for interrupt

                     NOP


                     LJMP      WAIT


; The following is the external interrupt 0 service subroutine


INT_EX0: JNB P1.0, NEXT1; Determine if it is interrupt 1


              LJMP INT_IR1 ; Jump to interrupt handler No. 1 

NEXT1: JNB P1.1, NEXT2; Determine if it is interrupt 2 

              LJMP INT_IR2 ; Jump to interrupt handler No. 2


NEXT2: LJMP INT_IR3 ; Jump to interrupt handler No. 3

 


              ORG       1000H


INT_IR1:             


              ;Insert the corresponding interrupt handler


              RETI ;Interrupt return


              ORG       1100H 

INT_IR2:             

              ;Insert the corresponding interrupt handler

 


              RETI ;Interrupt return


              ORG       1200H


INT_IR3:             

              ;Insert the corresponding interrupt handler

 

              RETI ;Interrupt return 


Reference address:51 MCU 3 external interrupt sources interrupt response programming example

Previous article:The format and functions of each bit of the timer/counter control register TCON
Next article:The function and use of single chip microcomputer timer counter

Latest Microcontroller Articles
  • Download from the Internet--ARM Getting Started Notes
    A brief introduction: From today on, the ARM notebook of the rookie is open, and it can be regarded as a place to store these notes. Why publish it? Maybe you are interested in it. In fact, the reason for these notes is ...
  • Learn ARM development(22)
    Turning off and on interrupts Interrupts are an efficient dialogue mechanism, but sometimes you don't want to interrupt the program while it is running. For example, when you are printing something, the program suddenly interrupts and another ...
  • Learn ARM development(21)
    First, declare the task pointer, because it will be used later. Task pointer volatile TASK_TCB* volatile g_pCurrentTask = NULL;volatile TASK_TCB* vol ...
  • Learn ARM development(20)
    With the previous Tick interrupt, the basic task switching conditions are ready. However, this "easterly" is also difficult to understand. Only through continuous practice can we understand it. ...
  • Learn ARM development(19)
    After many days of hard work, I finally got the interrupt working. But in order to allow RTOS to use timer interrupts, what kind of interrupts can be implemented in S3C44B0? There are two methods in S3C44B0. ...
  • Learn ARM development(14)
  • Learn ARM development(15)
  • Learn ARM development(16)
  • Learn ARM development(17)
Change More Related Popular Components

EEWorld
subscription
account

EEWorld
service
account

Automotive
development
circle

About Us Customer Service Contact Information Datasheet Sitemap LatestNews


Room 1530, 15th Floor, Building B, No.18 Zhongguancun Street, Haidian District, Beijing, Postal Code: 100190 China Telephone: 008610 8235 0740

Copyright © 2005-2024 EEWORLD.com.cn, Inc. All rights reserved 京ICP证060456号 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号