#include<p18f452.h>
void T0_init();
void main()
{
TRISC=0; // Configure PortB as output Port.
LATC=0x01;
T0CON=0x07; // Prescaler= 1:256, 16-bit mode, Internal Clock
T0_init();
while(1)
{
// Initialize Timer0
LATC=0x00;
T0_init(); //Delay for 1 sec
LATC=0x01;
T0_init(); //Again delay for 1 sec
}
}
void T0_init()
{
int a=0;
//while(a<2) // {
TMR0H=0xF0; // Values calculated for 1 second delay with 4MHz crystal
TMR0L=0xBD; //4/4MHz =1us=1us*prescaler=256us=1sec/256u=0xF42-(FFFF)=F0BD
T0CONbits.TMR0ON=1; // Timer0 On
while(INTCONbits.TMR0IF==0); // Wait until TMR0IF gets flagged
T0CONbits.TMR0ON=0; // Timer0 Off
INTCONbits.TMR0IF=0; // Clear Timer0 interrupt flag
// a++;
// }
}
It is very accurate delay and it is doing its work but I want longer delays like of hours or minutes. So , what to do for longer delays. I tried using counter which increments on every flagged, but it does not work.
A second is 1000000 microseconds, that is less than 256*256*256=16777216. So a 256-prescaled 16-bit timer is sufficient to count a second. But it's not enough to count a minute.
The solution is to add a
for
loop to count the seconds. And another one for minutes, and another one for hours, as suggested by @Andrew .A source of uncertainty is that the overflow of the timer is checked once in the
while()
loop. So if long computations are performed in that loop, the precision will decrease. To overcome this, using interrupts is the way to go. Whatever is happening, as the overflow of the timer occurs, the interrupt flag is raised and the interruption function is executed within a few cycles.Since nothing is done in the
while(1)
loop, i wanted to use theSLEEP()
command to spare some energy. Unfortunately, the timer0 is switched off by theSLEEP()
command. It is not the case of timer1, but timer1 is a 8-prescaled 16-bit timer... So a for loop is needed to count a second.Here is a code compiled by XC8 and tested with the simulator of MPLAB X...
The duration of a "second" is subjected to caution...Playing with
TMR1H
,TMR1L
andnb
may be required.And using an external clock source (quartz) is better : How to make Timer1 more accurate as a real time clock?