1 / 14

EE 319K Introduction to Microcontrollers

EE 319K Introduction to Microcontrollers. Lecture 10: Interrupts, Output Compare Periodic Interrupts. Read Book Sections 9.1, 9.2, 9.4, 9.6.1, 9.6.2, 9.10. Interrupt

lupita
Download Presentation

EE 319K Introduction to Microcontrollers

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. EE 319KIntroduction to Microcontrollers Lecture 10: Interrupts, Output Compare Periodic Interrupts Read Book Sections 9.1, 9.2, 9.4, 9.6.1, 9.6.2, 9.10

  2. Interrupt An interrupt is the automatic transfer of software execution in response to a hardware event (trigger) that is asynchronous with current software execution. H/w event: An external I/O device (like a keyboard or printer) requesting service, An Internal event (like an op code fault, or a periodic timer) occurs When the hardware needs service it performs a busy to done state transition (sets a flag) Thread A thread is defined as the path of action of software as it executes. ISR is a background thread A new background thread is created for each interrupt request. Local variables and registers used in the interrupt service routine are unique Threads share globals Interrupts and Threads Ramesh Yerraballi

  3. Interrupts • Each potential interrupt source has a separate arm bit. E.g., C0I • Set arm bits for those devices from which it wishes to accept interrupts, • Deactivate arm bits in those devices from which interrupts are not allowed • Each potential interrupt source has a separate flag bit. E.g., C0F • hardware sets the flag when it wishes to request an interrupt • software clears the flag in ISR to signify it is processing the request • Interrupt enable bit, I, which is in the condition code register. • enable all armed interrupts by setting I=0, or cli • disable all interrupts by setting I=1, or seiI=1 does not dismiss the interrupt requests, rather it postpones Ramesh Yerraballi

  4. Trigger-Arm-Enable Three conditions must be true simultaneously for an interrupt to occur: • Initialization software will set the arm bit. e.g., C0Iindividual control bit for each possible flag that can interrupt • When it is convenient, the software will enable, I=0allow all interrupts now • Hardware action (trigger) sets a flag to indicate service request e.g.,C0F • new input data ready, • output device idle, • periodic, • alarm Ramesh Yerraballi

  5. Interrupt Processing What happens when an interrupt is processed? • The execution of the main program is suspended • The current instruction is finished, • pushes registers on the stack • sets the I bit (disallow interrupts while processing interrupt) • gets the vector address from high memory (The ISR previously was registered at this vector address) • the interrupt service routine (ISR), or background thread is executed, • clears the flag that requested the interrupt • performs necessary operations • communicates using global variables • the main program is resumed when ISR executes rti. • pulls the registers from the stack Ramesh Yerraballi

  6. Interrupt Processing Ramesh Yerraballi

  7. Interrupt Solution Scenarios Ramesh Yerraballi

  8. 9S12 Interrupts (Partial) 0xFFD4 interrupt 21 SCI1 0xFFD6 interrupt 20 SCI0 0xFFDE interrupt 16 timer overflow 0xFFE0 interrupt 15 timer channel 7 0xFFE2 interrupt 14 timer channel 6 0xFFE4 interrupt 13 timer channel 5 0xFFE6 interrupt 12 timer channel 4 0xFFE8 interrupt 11 timer channel 3 0xFFEA interrupt 10 timer channel 2 0xFFEC interrupt 9 timer channel 1 0xFFEE interrupt 8 timer channel 0 0xFFF0 interrupt 7 RTI real time interrupt 0xFFF6 interrupt 4 SWI software interrupt 0xFFF8 interrupt 3 trap software interrupt 0xFFFE interrupt 0 reset Interrupt Number is used by Metrowerks C Compiler Ramesh Yerraballi

  9. Periodic Interrupts using Output Compare The rate is dependent on PLL, TSCR2 and 1000 in ISR Ramesh Yerraballi

  10. m a i n O C 0 I S R A c k n o w l e d g e O C 3 _ S t a r t s e t u p n e x t t o g g l e P P 6 t o g g l e P P 7 R T I Example: OC3.rtf OC3.rtf is different from OC.rtf in TExaS Ramesh Yerraballi

  11. OC3.rtf DDRP equ $025A ; Port P Data Direction Register PTP equ $0258 ; Port P I/O Register TC0 equ $0050 ; Timer Input Capture/Output Compare Register 0 TCNT equ $0044 ; Timer Count Register TFLG1 equ $004E ; Main Timer Interrupt Flag 1 TIE equ $004C ; Timer Interrupt Enable Register TIOS equ $0040 ; Timer Input Capture/Output Compare Select TSCR1 equ $0046 ; Timer System Control Register1 TSCR2 equ $004D ; Timer System Control Register 2 org $4000 Main lds #$4000 movb #$80,TSCR1 ;enable TCNT bset TIOS,#$01 ;activate output compare 0 (IOS0=1) bset TIE,#$01 ;arm (COI = 1) movb #$03,TSCR2 ;1us TCNT ldd TCNT addd #25 std TC0 ;Schedule C0F to be set in 25 us: First Interrupt bset DDRP,#$C0 cli ;enable loop ldaa PTP eora #$40 staa PTP bra loop Ramesh Yerraballi

  12. …OC3.rtf ;interrupts every 1000 TCNT cycles ;every 1ms, assuming TCNT at 1us TC0handler movb #$01,TFLG1 ;acknowledge, clear C0F ldd TC0 addd #1000 std TC0 ;setup the time for next interrupt ; this stuff (here toggle PP7)gets executed every 1 ms ldaa PTP eora #$80 staa PTP rti org $FFEE ; output compare 0 interrupt vector fdb TC0handler ; Register ISR (Handler to run when OC0 ; interrupt occurs) org $FFFE fdb Main reset vector Ramesh Yerraballi

  13. Things you must do in an OC interrupt service routine Acknowledge (make C0F become one) Set the timer to specify when to interrupt next Things you must do in every interrupt service routine Acknowledge (clear flag that requested the interrupt) ISR Dos Ramesh Yerraballi

  14. Things you must do in every ritual Arm (specify a flag may interrupt) Enable (allow all interrupts on the 9S12) Things you must do in an OC ritual Turn on TCNT (TEN=1) Set channel to output compare (TIOS) Specify TCNT rate (TSCR2, PACTL, PLL) Arm (C0I=1) When to generate first interrupt Enable (I=0) Ritual Ramesh Yerraballi

More Related