Continue to Site

Welcome to our site!

Electro Tech is an online community (with over 170,000 members) who enjoy talking about and building electronic circuits, projects and gadgets. To participate you need to register. Registration is free. Click here to register now.

  • Welcome to our site! Electro Tech is an online community (with over 170,000 members) who enjoy talking about and building electronic circuits, projects and gadgets. To participate you need to register. Registration is free. Click here to register now.

PIC24 Timer2 interrupt on 1Hz input

Status
Not open for further replies.

granddad

Well-Known Member
Most Helpful Member
Seemed a good idea for my PIC24FV32KA302 project to count up to 60 seconds from a 1Hz input RTC chip ( DS1338) , and each minute to set the timer interrupt. The ISR would display the time and do other time related house work, It worked fine but seemed to have problems when I added an interrupt driven IR input...

You know what thought did , thought wrong... ( my Dad's favourite saying ).

I had not fully understood the PIC's timer 2 operation relating to the reset of the timer count . In normal operation, TMR2 is incremented from 00h on the rise of each clock either FOSC/2 or in my case T2CK pin. Via a 4-bit counter/prescaler, here set to 1:1 to count the 00 to 59 seconds input ( PR2 value) The value of TMR2 is compared to that of the Period register PR2, on each FRC clock cycle. When the two values (TMR2 to PR2 ) match, the comparator generates a match signal as the timer output. This signal resets the value of TMR2 to 00h on the next clock input cycle. Timer2 can also generate an optional device interrupt, the TMR2 Match Interrupt Flag, which is latched in T2IF. So as TMR2 count was not reset for another ½ a second , the compare and T2IF Interrupt continued to be set for all that time and the ISR was called continuously. A simple TMR2=0; code in the ISR fixed my head scratching...
Timer2.jpg
 
Hi Mike
Couldn't you simply clear T2IF?
Well yes you would have thought so , and it was happening , but because the comparitor was still equal it would just set it again ...not until I had.. TMR2=0; did the ISR stop repeating.
Code:
// T2 is counting seconds from RTC at 60 will interrupt set the action flag
void __attribute__((__interrupt__,auto_psv))_T2Interrupt(void)
{
 TMR2=0;  // now it works 
action=1;
IFS0bits.T2IF=0;
}
 
Status
Not open for further replies.

Latest threads

New Articles From Microcontroller Tips

Back
Top