




版權(quán)說(shuō)明:本文檔由用戶(hù)提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡(jiǎn)介
1、168HC11 Polling and InterruptsChapter 82Polling and Interrupts CPU may need to provide support (called a service) to external devices. How? We can POLL devices We can have an Interrupt system We can have a combination of the two3Polling “Ask” each device sequentially if it needs service. Note, no de
2、vices may need servicing during the poll.4Interrupts6811IRQDevice 1Data BusPortsDevice “interrupts” CPU to indicate that it needs service.568HC11 Interrupts Interrupt system is “built-in” to 6811 Special interrupt software instructions Special interrupt hardware resources What needs to interrupt? Ex
3、ternal Devices Keyboards, Mouse, Sensors, etc. Internal Events Reset, Illegal Operation, User Interrupt, etc6Types of Interrupts Maskable The program can choose to “ignore” a maskable interrupt by setting the I bit equal to 1 in the CCR. This is called “masking” the interrupt. Setting the I bit = 0
4、“unmasks” the interrupt, allowing interrupts to be serviced. SXHINZVCCondition Code Register7Types of Interrupts Non-maskable interrupts A program cannot choose to ignore a non-maskable interrupt. A non-maskable interrupt is used for events that must always be serviced. Example: Reset A special subr
5、outine called an Interrupt Service Routine (ISR) is used to service the interrupt8Interrupt Service Routines(ISR)9Interrupt Service Routine (ISR) ISR is a special subroutine that is designed to “service” the interrupt Also called an “interrupt handler” Lets examine the interrupt process10Interrupt P
6、rocess Interrupt occurs CPU waits until the current instruction has finished being executed. Note: PC is pointing to next instruction to execute All CPU registers including the program counter (PC) and condition code register (CCR) are pushed onto stack Interrupt bit is set (STI) to mask further int
7、errupts. In most cases, you dont want the ISR to itself be interrupted. The PC is loaded with address of the Interrupt Service Routine (ISR) ISR is executed. The last instruction in the ISR must be RTI. RTI = Return from Interrupt11Return from Interrupt Your ISR should almost always end with a RTI i
8、nstruction RTI Return from Interrupt What does RTI do? Pulls all registers from stack. The I bit in the pulled CCR is clear, so interrupts are enabled. PC contains address of next instruction Continues interrupted program12Example of ISR13LED Circuit ExampleRVCCLight OnRVCCLight OffSwitch14Polling E
9、xample1568HC11 LED ExamplePolling ExamplePseudo-code (Polling)* Use PA0 for Input, PA6 for output Configure PortA ; RepeatIF(PA0=0) thenPA6=0 ; Turn LED OFFElsePA6=1; Turn LED ONEndIF Until Forever16Symbols*SymbolsData EQU $0000 ; This is the address of the data spaceProgram EQU $E000 ; This is the
10、start of the program spaceReset EQU $FFFE ; This is the reset vector* ConstantsPORTA EQU $1000 ; Port A AddressPACTL EQU $1026 ; Port A Control RegisterPACONF EQU %00000000 ; This configs PortA for I/O modeLED_BIT EQU %01000000 ; This it the LED bitMASK EQU %00000001 ; This is the input bit mask*17P
11、olling Example* Program ORG Program ; start of ProgramStart: LDAA #PACONF ; Load Port A conf bits STAA PACTL ; Configure port A* Lets use If(Bit2 = 0) then LED OFF, Else LED ON*Loop: LDX #PortA ; Load X with address of port A BRCLR 0,X MASK LED_OFF ; Branch to LED_OFF if PA0 = 0 BSET 0,X LED_BIT ; T
12、urn on LED Bit BRA Loop ; Check switch againLED_OFF: BCLR 0,X LED_BIT ; Turn the LED OFF BRA Loop ; Check switch againNote: This program continually checks to switch18Interrupt Example1968HC11 LED ExampleInterrupt ExamplePseudo-code (Interrupt)* Use PA6 for output Configure PortA ; Enable Interrupts
13、 Execute any program ISR: *Executed only when interrupt occursRead PortAIf PA0=0 Then LED=0 Else LED=1Return from Interrupt20Symbols*SymbolsData EQU $0000 ; This is the address of the data spaceProgram EQU $E000 ; This is the start of the program spaceReset EQU $FFFE ; This is the reset vectorIRQ EQ
14、U $FFF2 ; This is the IRQ vector* ConstantsPORTA EQU $1000 ; Port A AddressPACTL EQU $1026 ; Port A Control RegisterPACONF EQU %00000000 ; This configs PortA for I/O modeLED_BIT EQU %01000000 ; This is the LED bitMask EQU %00000001 ; This is the input bit*21Interrupt Example* Program ORG Program ; s
15、tart of ProgramTop: LDAA #PACONF ; Load Port A conf bits STAA PACTL ; Configure port A CLI ; Enable interrupts* The main program can do anything * Lets just wait*Loop: BRA Loop* This is the ISR. It will only execute when an interrupt occurs*ISR: LDX #PORTA BRCLR 0,X MASK LED_OFF ; If input=0 then Go
16、to LED_OFFLED_ON: BSET 0,X LED_BIT ; Turn LED ON BRA Done ; We are doneLED_OFF: BCLR 0,X LED_BIT ; Turn LED OFFDone: RTI ; Return from interrupt 22Interrupt Example ORG IRQ ; Need to set ISR vector FDB ISR ORG RESET ; Set Reset interrupt vector FDB Top 23Summary Polling InterruptSwitch Input: PA0 PA
17、0 and IRQMain Program: Checks Switch AnythingISR: Not needed Required24Interrupt Service Routine Where is the address to the ISR? The address of the ISR is stored in the Interrupt Vector Table. 68HC11 Interrupt Vector Table $FFC0-$FFFF (2 bytes for each interrupt) Example: Reset “interrupt” vector i
18、s at address $FFFE:$FFFF25Setting Vectors in Interrupt Vector Table (IVT) I_Vector EQU Vector Address ORG I_Vector FDB ISR Example: Reset EQU $FFFE ORG Reset FDB TOP2668HC11 Interrupt Vector Table Serial Systems (SCI and SPI) SCI: $FFD6:$FFD7 SPI: $FFD8:$FFD9 Timer System IRQ and XIRQ Interrupts IRQ
19、: $FFF2:FFF3 XIRQ: $FFF4:FFF5 Software Interrupts SWI, Illegal Opcode Fetch SWI: $FFF6:FFF7 Hardware Interrupts COP failure, Clock Monitor Failure, Reset27Software ExampleIRQ and ResetIRQ Vector :$FFF2:FFF3Reset Vector: $FFFE:FFFF28IRQ ExampleIRQ EQU $FFF2 ; This is the address of the IRQ interruptP
20、ORTB EQU $1004 ; Port B AddressZero EQU %00000000 ; 00DCHAR EQU %01010101 ; 55*ORGProgram ; start of ProgramStart: CLI ; Enable interrupts LDS #Stack ; Set stack pointerLoop: LDAA #Zero ; Clear byte STAA PortB BRA Loop ; Stay here *ISR: LDAA #DCHAR STAA PORTB ; Store A register into port b RTI ; Ret
21、urn from interrupt* IRQ Vector ORG IRQ ; Point Assembler to SWI address FDB ISR* Reset Vector ORGReset;reset vector FDB Start;set to start of programIf IRQ occurs, then the programat address ISR is executed.If Reset occurs, then the program at address Start is executed. 29TPS Quiz30Nonmaskable Inter
22、ruptsSection 8.531Nonmaskable Interrupts Nonmaskable interrupts cannot be ignored Several types External hardware interrupts Internal hardware interrupts Software interrupts3268HC11 Nonmaskable Interrupts Reset External hardware interrupt Reset Pin (Active low) Vector: $FFFE:FFFF SWI Instruction Sof
23、tware interrupt Vector: $FFF6:FFF7 Computer Operating Failure (COP) Internal hardware interrupt Watchdog timer: Chapter 10 Vector: $FFFA:FFFB3368HC11 Nonmaskable Interrupts Illegal Opcode Trap Software Interrupt Vector: $FFF8:FFF9 Nonmaskable Interrupt Request (XIRQ) External hardware interrupt XIRQ
24、 Pin Vector: $FFF4:FFF53468HC11 XIRQ Interrupt Nonmaskable Interrupt Request (XIRQ) External hardware interrupt On reset, the XIRQ interrupt is disabled, the programmer must enable it by clearing the XIRQ bit. E.g. During the boot process Once the XIRQ is enabled, the programmer cannot disable it E.
25、g. Users cannot turn this off! External hardware interrupt XIRQ Pin Vector: $FFF4:FFF53568HC11 Interrupt Instructions SEI: SEt Interrupt mask: Set I bit to 1 Disables (masks) all maskable interrupts CLI: CLear Interrupt mask: Reset I bit to 0 Enables (unmasks) all maskable interrupts SWI: SoftWare I
26、nterrupt Generates software interrupt WAI: WAit for Interrupt Pushes all registers onto stack Places CPU into wait state Interrupt will “wake-up” controller RTI: Return from Interrupt Pulls all registers from stack Executes interrupted program36Advanced Interrupts Section 8.737Polling “Ask” each device
溫馨提示
- 1. 本站所有資源如無(wú)特殊說(shuō)明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶(hù)所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁(yè)內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒(méi)有圖紙預(yù)覽就沒(méi)有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫(kù)網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶(hù)上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶(hù)上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶(hù)因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。
最新文檔
- 保值造粒機(jī)出售合同樣本
- 公關(guān)服務(wù)協(xié)議合同樣本
- 鋁板幕墻工程安全技術(shù)交底
- 個(gè)體簽勞務(wù)合同樣本
- 燃?xì)獍踩珜?zhuān)項(xiàng)整治工作方案
- pep人教版小學(xué)英語(yǔ)五年級(jí)上冊(cè)第五單元教案
- 冠狀動(dòng)脈粥樣硬化性心臟病病人的護(hù)理
- 青馬工程策劃
- 2025年淘寶直播項(xiàng)目發(fā)展計(jì)劃
- 買(mǎi)賣(mài)杯子合同樣本
- 《羅秀米粉加工技術(shù)規(guī)程》 編制說(shuō)明
- 2024年江蘇省無(wú)錫市中考英語(yǔ)試卷
- 《湖南省房屋建筑和市政工程消防質(zhì)量控制技術(shù)標(biāo)準(zhǔn)》
- 充電樁安全巡查記錄表
- 《公路工程現(xiàn)澆泡沫聚合土應(yīng)用技術(shù)規(guī)程》
- 2025屆云南省民族大學(xué)附屬中學(xué)高三(最后沖刺)數(shù)學(xué)試卷含解析
- 墨菲定律知識(shí)介紹墨菲定律啟示課件
- 品管圈PDCA獲獎(jiǎng)案例-新生兒科運(yùn)用PDCA循環(huán)縮短早產(chǎn)兒完全經(jīng)口喂養(yǎng)過(guò)渡時(shí)間成果匯報(bào)
- 河流沿岸護(hù)欄安裝工程協(xié)議
- 工程四新培訓(xùn)
- T∕CACM 1021.19-2018 中藥材商品規(guī)格等級(jí) 白芷
評(píng)論
0/150
提交評(píng)論