Will the timer run independently from the main code ? Like "in the background" ?
I ask this since the main program will be stuck at the (While) statement.
Thanks
Will the timer run independently from the main code ? Like "in the background" ?
I ask this since the main program will be stuck at the (While) statement.
Thanks
franko,
yes. once the initialization process of TIMER1 interrupt is complete and activating the start of counter, the timer will run in background as you work on your main code. it will only then be entering the interrupt service routine once it reached the overflow anytime and anywhere while you are working on your main routine.
regards,
yettie
We should learn "KISS" - Keep It Simple Stupid...
I read about the timer(s) running in the background in Melanie's Olympic timer.
I've looked through the data sheets. How does one learn more about how to use the timer functions ? Proper way to write the code ? Reccomended books ?
Thanks,
Franko
franko,
good day! i had not read any reading materials except for the microchip datasheet. you can have a guide there of what bits you will manipulate. for TIMER1, such bits are T1CON, PIE1.1, PIR1.1, and for interrupts INTCON. you would want to experiment it and discover what you can do. I bet it will be more satisfying. Melanie's olympic timer example is your best guide. I'm sure you can do it.
regards,
yettie
We should learn "KISS" - Keep It Simple Stupid...
Bookmarks