How To Ideas | How To Articles | How To Tutorials


0

Tutorial 2 – How To Program PIC Microcontroller Interrupt in C


We were using polling technique before in which we were waiting for some event to happen, so in that way we were consuming a lot of CPU time by keeping CPU. But in Interrupt method we can do other work and when interrupt happens we may serve that interrupt according to it’s need or importance.

PIC Microcontroller has following types of Interrupt-

  1. Timer Interrupt
  2. Serial Interrupt
  3. External Interrupt
  4. Port B Interrupt

In all these Interrupts you 1st need to check if an interrupt occurred, then you need to check which type of Interrupt occurred and you need to write Interrupt Subroutine

The following steps are same in this type of Interrupt–

     

  1. Assign Interrupt to that location where it has Highest Priority(0×08) and when interrupt occurs Program Counter should jump to that location(0×08)  

    #pragma code in=0×08
    in()
    {
    _asm
    GOTO chk
    _endasm
    }
    #pragma code

  2. Check which type of Interrupt Occurred and Jump to that Interrupt Subroutine

    #pragma interrupt chk
    void chk()
    {
    if(INTCONbits.TMR0IF==1)
    T0();
    if(PIR1bits.TMR1IF==1)
    T1();
    }

    You can download Interrupt files from here…. ENJOY……

Incoming search terms:

  • interrupts in pic microcontroller (1)
  • pic interrupts using c (1)
  • pic16f877a serial interrupts (1)
  • pic18f4550 port b interrupts (1)
Filed in: PIC Microcontroller Tags: , , , , , , , , , , , , , ,

Leave a Reply

Submit Comment



© 6531 How To Ideas. All rights reserved.
Proudly designed by Theme Junkie.