UPC EETAC Bachelor's Degree in Telecommunications Systems and in Network Engineering EEL

 

 

Basic concepts on TMR0

L12


How to use the embedded TMR0 as a timer?

How to use the embedded TMR0 as a counter of external events?

1. Architecture and configuration bits

Study peripheral timer TMR0  architecture and configuration possibilities rec. If TOCS = 1, it is a counter of external pulses (events); if TOCS = 0, is a timer derived from the internal time-base FOSC/4. The way TMR0 works is explained in datasheet chapter 11.

architecture Timer0

Fig 1. TMR0 embedded peripheral available in Microchip PIC family. The block diagram is a kind of RTL. A similar one can be found for any other peripheral timer like TMR1 or TMR2 of the same family. Similar timers-counters are also available in all other microcontrollers.

 

TMR0 Analysis

Fig 2. Circuit analysed from CSD point of view.

 


2. Example project (TMR0 as timer): 18.5 s timer driven by an internal time base based on TMR0

- Timer_LCD_TMR0 (design phase #3 of the tutorial 18.5 s timer in Lab11)

 


3. Example project (TMR0 as counter): Counter of external events

We can very well use the TMR0 as a counter of events (falling or rising edges) at pin T0CKI (RA4).

TMR0 as a counter

Fig 3. TMR0 block diagram indicating how to use it for counting external events.

Both options are possible for counting, (1) reading (polling) the current value of the counter TMR0 any time required by the software, or instead, (2) generating interrupts TMR0IF every certain number NP of pulses.

For instance, we can continue the tutorial application Counter_BCD_1digit_LCD (design phase #2) adding a new design phase #3 as follows:

Counter_BCD_1digit_LCD_TMR0 (design phase #3): Liberate the INT0 so that it can be used for other future applications in the Counter_BCD_1digit_LCD replacing the INT0 (pin RB0) by the TMR0 working as a counter of external events.

a) Implement the circuit so that the BCD count is updated every single external pulse

b) Implement the circuit so that the BCD count is updates every three external pulses

Counter_BCD_1digit_LCD_TMR0

Fig 4. New symbol for the design phase #3.

This is the tutorial Counter_BCD_1digit_LCD_TMR0 where this application is solved.