Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

[SOLVED] PIC16F887 Interrupt Problem

Status
Not open for further replies.

tahir4awan

Full Member level 4
Joined
Nov 29, 2010
Messages
208
Helped
16
Reputation
32
Reaction score
17
Trophy points
1,308
Location
Germany
Activity points
3,084
I wrote this code just to check how interrupt works but the problem is MikroC is not compiling the code

----------------------------------------------------------------------------
int count = 0;
void main()
{
ANSEL = 0;
ANSELH = 0;
TRISB = 0x00;
GIE_bit = 1;
PEIE_bit = 1;
T0IE_bit = 1;
T0IF_bit = 0;
T0CS_bit = 1;
T0SE_bit = 0;
PSA_bit = 0;
PS0_bit = 1;
PS1_bit = 1;
PS2_bit = 1;
TMR0 = 0;

void interrupt() {
count++;
TMR0 = 0;
T0IF_bit = 0;
}


while(1){
if(count==5)
{
PORTB = 0x01;
}
else if(count==10)
{
PORTB = 0x02;
}
else if(count==15)
{
PORTB = 0x03;
}
else if(count==20)
{
PORTB = 0x04;
}
}
}

---------------------------------------------------------------------------





can someone tell me what is the problem?
 

I didn´t see the following command at Interrupt() routine :

Code:
INTCON.INTF = 0;

Neither that at begin :

Code:
    INTCON.GIE = 1; //Enable Global Interrupt
+++
 
Thanks guys I solved the problem using ISR void Interrupt(). But one thing I didn't understand that in MikroC the ISR is simply write as void Interrupt() but many people write it differently, Why?
 

...I solved the problem using ISR void Interrupt()...

ISR statement is not a standard ANSI-C command.
There exists a wide of other commands with specific sintax at each compiler.
Maybe that ISR declaration implicity instructs compiler to add above mentioned instructions to Interrup routine.

+++
 
Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top