81
H. Huang Transparency No.8-1 The 68HC11 Microcontroller Chapter 8: 68HC11 Timer Functions The 68HC11 Microcontroller Han-Way Huang Minnesota State University, Mankato

Chapter 8: 68HC11 Timer Functions

  • Upload
    pabla

  • View
    56

  • Download
    7

Embed Size (px)

DESCRIPTION

Chapter 8: 68HC11 Timer Functions. The 68HC11 Microcontroller. Han-Way Huang. Minnesota State University, Mankato. Applications that Requires a Dedicated Timer System -time delay creation and measurement -period measurement -event counting -time-of-day tracking - PowerPoint PPT Presentation

Citation preview

Page 1: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-1

The 68HC11 Microcontroller

Chapter 8: 68HC11 Timer Functions

The 68HC11 Microcontroller

Han-Way Huang

Minnesota State University, Mankato

Page 2: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-2

The 68HC11 Microcontroller

Applications that Requires a Dedicated Timer System

- time delay creation and measurement- period measurement- event counting- time-of-day tracking- periodic interrupt generation to remind the processor to perform routine tasks- waveform generation- etc.

A Summary of the 68HC11 Timer Functions

1. Main timer

• 16-bit non-stop timer• read-only after reset

2. Input capture function

• three channels -- 1 to 3• each channel has a 16-bit latch, edge-detection logic, flag bit, and interrupt logic• will load the current main timer value into the input capture register when the selected signal edge is detected• can be used to measure the signal frequency, period, and pulse width and as time reference

Page 3: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-3

The 68HC11 Microcontroller

3. Output compare functions

• A (E) series members have five (four/five) channels (OC1…OC5)• each channel has a 16-bit comparator, 16-bit register, action pin, interrupt request circuit, forced-compare function• continuously compare the value of the 16-bit compare register with that of the main timer and may optionally trigger an action on a pin, generate an interrupt• is often used to create a time delay and generate a waveform

4. Real-time interrupt

• generates periodic interrupts when enabled• interrupt period is programmable 5. Computer operating properly (COP)

discussed in Chapter 6

6. Pulse accumulator

• has an 8-bit counter• has two operation modes• can be used to measure events, frequency, or the duration of a pulse width

Page 4: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-4

The 68HC11 Microcontroller

The Free-Running Main Timer (TCNT)

- The main timer is cleared to 0 on reset and is read-only except in test mode.- The timer counter register is meant to be read by a 16-bit read instruction such as LDD or LDX. - The block diagram is shown in Figure 8.1.

MCUE clock

Prescalerdivide by

1, 4, 8, or 16

TCNT(H) TCNT(L)

16-bit free-runningcounter

Taps for RTI, COPwatchdog, andpulse accumulator

TOF

TOI Interruptrequest

16-bit timer bus

Figure 8.1 68HC11 main timer system

Page 5: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-5

The 68HC11 Microcontroller

Registers related to Main Timer

1. Timer counter: TCNT2. Timer flag register 2: TFLG23. Timer mask register 2: TMSK2

- Those bits related to main timer operation in TFLG2 and TMSK2 are in boldface.- Timer counter is meant to be read using a double-byte read instruction such as LDD or LDX.

If the user accesses TCNT with two 8-bit reads, the result might not be correct, because the lower byte of TCNT would be incremented when the upper byte is accessed.

TOI RTII PAOII PAII 0 0 PR1 PR0

7 6 5 4 3 2 1 0TMSK2at $1024

value afterreset 0 0 0 0 0 0 0 0

TOF RTIF PAOVF PAIF

7 6 5 4 3 2 1 0TFLG2at $1025

value afterreset 0 0 0 0 0 0 0 0

Figure 8.2 TMSK2 and TFLG2 registers

Page 6: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-6

The 68HC11 Microcontroller

The prescale factor for the main timer is selected by bits 1 and 0 of the timer mask register 2as shown in Table 8.1.

Example 7.1 What values will be in A and B after execution of the following three instructionsif TCNT contains $5EFE when the upper byte is accessed ? Assume the bits PR1 and PR0 of TMSK2 are 00.

regbas equ $1000TCNTH equ $0ETCNTL equ $0F

ldx #regbasldaa TCNTH,X ; read the upper byte of TCNTldaa TCNTL,X ; read the lower byte of TCNT

PR1 PR0Prescale

factor

Overflow period

2 MHzE clock

1 MHzE clock

0011

0101

148

16

32.77 ms131.1 ms262.1.ms524.3 ms

65.54 ms262.1 ms524.3 ms1.049 ms

Table 8.1 Main timer clock frequency vs. PR1 and PR0

Page 7: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-7

The 68HC11 Microcontroller

Solution:

- The main timer prescale factor is 1 and hence the E clock is the clock input to TCNT.- The instruction LDAA TCNTH,X loads the upper byte (value is $5E) of TCNT into A.- The instruction LDAB TCNTL,L takes 4 E clock cycles to execute. Therefore, TCNT

will have been incremented by 4 to $5F02. The accumulator B will receive the value $02.

This is not what we expect. If the instruction LDD TCNT,X is executed, then A and B will contain $5E and $FE respectively.

Page 8: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-8

The 68HC11 Microcontroller

Input Capture Functions

- Physical time is often represented by the contents of the main timer.- The occurrence of an event is represented by a signal edge (rising or falling edge).- The time when an event occurs can be recorded by latching the count of the main timer

when a signal arrives.

- The 68HC11 has three input capture channels (IC1, IC2, & IC3) to implement this operation.- Each input capture channel has a 16-bit input capture register, a flag, edge-detection

logic, and interrupt request circuit.

Rising edge Falling edge

or

Figure 8.3 Events represented by signal edges

16-bit latch

TICx

ICxF Edge-detectionlogic

16-bit timerbus ICx pin

ICxI Interruptrequest

Figure 8.4 Input-capture function block diagram

Page 9: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-9

The 68HC11 Microcontroller

- The edge to be captured is selected by programming the register TCTL2.

For example, the following instruction sequence captures the rising edge of the signal appliedat PA0 (IC3):

regbas equ $1000TCTL2 equ $21 ; offset of TCTL2 from regbas

ldx #regbasbclr TCTL2,X %00000010 ; clear bit 1 to 0bset TCTL2,X %00000001 ; set bit 0 to 1

EDG1B EDG1A EDG2B EDG2A EDG3B EDG3A

0 00 0 0 0

TCTL2at $1021

value afterreset

EDGxB EDGxA

0 0 capture disabled0 1 capture on rising edge1 0 capture on falling edge1 1 capture on both edges

x = 1,...,3

Figure 8.5 Contents of TCTL2

Page 10: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-10

The 68HC11 Microcontroller

Registers related to input capture

- the lowest three bits (bits 2 to 0) of this register are input capture flags- the arrival of a signal edge will set one of the input capture flags- the upper five bits (bits 7 to 3) of this register are output compare flags

1. timer mask register 1 (TMSK1):

7 6 5 4 3 2 1 0

OC1I OC2I OC3I OC4I OC5I IC1I IC2I IC3I

0 0 0 0 0 0 0 0

2. timer flag register 1 (TFLG1):

- the lowest three bits (bits 2 to 0) of this register enable/disable the interrupt from the proper input capture channel

- the upper five bits (bits 7 to 3) of this register enable/disable the interrupt from thecorresponding output compare channels

OC1F OC2F OC3F OC4F OC5F IC1F IC2F IC3F

7 6 5 4 3 2 1 0

0 0 0 0 0 0 0 0

TFLG1at $1023

value afterreset

Figure 8.6 The contents of the TFLG1 register

Page 11: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-11

The 68HC11 Microcontroller

How to clear a timer flag bit?

write a 1 to the flag bit to be cleared

Method 1. use the BCLR instruction with a 0 at the bit position (s) corresponding to theflag (s) to be cleared. For example,

BCLR TFLG1,X $FE

will clear the IC3F flag. (Assume the index register contains $1000 and TFLG1 = $23)

Method 2. load an accumulator with a mask that has a 1 (or 1s) in the bit (s) correspondingto the flag (s) to be cleared; then write this value to TFLG1 or TFLG2. For example,

LDAA #$01STAA TFLG1,X

will clear the IC3F flag.

Page 12: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-12

The 68HC11 Microcontroller

Applications of Input Capture function

- Event arrival time recording- Period measurement: the input capture function captures the main timer values

corresponding to two consecutive rising or falling edges

- Pulse width measurement: capture the rising and falling edges

one period

(a) Capture two rising edges

one period

(b) Capture two falling edges

Figure 8.8 Period measurement by capturing two consecutive edges

Pulse width

Rising edge Falling edge

Figure 8.9 Pulse-width measurement using input capture

Page 13: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-13

The 68HC11 Microcontroller

- Interrupt generation: three input capture functions can be used as three edge-sensitiveinterrupt sources.

- Event counting: by counting the number of signal edges arrived during a period

- Time reference: often used in combination with an output compare function

Start ofinterval

End ofinterval

e 1e 2

e 3 e 4 e i e j

Figure 8.10 Using an input-capture function for event counting

... ...

Time t 0

Time of reference(set up by signal edge)

Time t 0 + delay

Time to activateoutput signal

(set up by output compare)

Figure 8.11 A time reference application

Page 14: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-14

The 68HC11 Microcontroller

Duty Cycle Measurement

T

T

duty cycle =T

T* 100%

Figure 8.12 Definition of duty cycle

Phase Difference Measurement

T

T

signal S1

signal S2

phase difference =T

T* 360 o

Figure 8.13 Phase difference definition for two signals

Page 15: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-15

The 68HC11 Microcontroller

Example 8.3 Use the input capture channel IC1 to measure the period of an unknown signal. The period is known to be shorter than 32 ms. Write a program to set up IC1to measure its period.Solution:

- two versions are available.- The polling method is shown

in Figure 8.15.

Start

Choose to capture the rising edge

Clear the IC1F flag

IC1F = 1?

Save the captured valueof the first edge.Clear the IC1F flag.

IC1F = 1?

yes

yes

no

no

Take the differenceof the second and

the first edges.

Stop

Figure 8.15 Logic flow of the period-measurement program (polling method)

Page 16: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-16

The 68HC11 Microcontroller

Assembly Program for Period Measurement (Polling Method)

REGBAS EQU $1000TLFG1 EQU $23TIC1 EQU $10TCTL2 EQU $21IC1rise EQU $10

ORG $00edge1 RMB 2period RMB 2

ORG $C000LDX #REGBASBCLR TFLG1,X $FB ; clear IC1F flagLDAA #IC1riseSTAA TCTL2,X ; capture rising edgeBRCLRTFLG1,X $04 * ; wait for the first rising edgeLDD TIC1,XSTD edge1 ; save the first edgeBCLR TFLG1,X $FB ; clear IC1F flagBRCLRTFLG1,X $04 * ; wait for the second edgeLDD TIC1,XSUBD edge1STD period ; save the periodEND

Page 17: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-17

The 68HC11 Microcontroller

C Program for Period Measurement (Polling method)

#include <hc11.h>#include <stdio.h>

main ( ){

unsigned int edge1, period;

TFLG1 = 0x04; /* clear IC1F flagTCTL2 = 0x10; /* configure to capture rising edge */while (!(TFLG1 & 0x04)); /* wait for the arrival of the first rising edge */edge1 = TIC1; /* save the arrival time of the first rising edge */TFLG1 = 0x04;while (!(TFLG1 & 0x04)); /* wait for the arrival of the second rising edge */period = TIC1 – edge1;printf(“\n The period of the signal is %d E clock cycles. \n”, period);return 0;

}

Page 18: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-18

The 68HC11 Microcontroller

Interrupt-driven Method for Period Measurement

Start

Select to capture therising edge of IC1

edge_cnt 2Clear IC1F flag

Enable IC1 interrupt

edge_cnt = 0?

period = edge2 - edge1

Stop

Clear IC1F flagDecrement edge_cnt

edge_cnt = 1?

Save the first edge

return from interrupt

yes

no

yes

no

Figure 8.16 Interrupt-driven method for period measurement

Page 19: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-19

The 68HC11 Microcontroller

REGBAS EQU $1000 ; base address of the I/O register blockTFLG1 EQU $23 ; offset of TFLG1 from regbasTMSK1 EQU $22 ; offset of TMSK1 from regbasTIC1 EQU $10 ; offset of TIC1 from regbasTCTL2 EQU $21 ; offset of TCTL2 from regbasIC1rise EQU $10 ; value to select the rising edge of IC1 to captureIC1I EQU $04 ; mask to select the IC1 bit in TMSK1IC1FM EQU $FB ; mask to clear IC1F using the BCLR instruction

ORG $0000edge_cnt RMB 1 ; edge countedge1 RMB 2 ; captured first edgeperiod RMB 2 ; period in number of E clock cycles

ORG $E8 ; IC1 interrupt jump table entry on the EVBJMP IC1_ISR ; “

ORG $C000 ; starting address of the main programLDS #$DFFF ; set up stack pointerLDX #REGBASLDAA #IC1rise ; select to capture the rising edge of IC1STAA TCTL2,X ; “BCLR TFLG1,X IC1FM ; clear the IC1F flagLDAA #2

Page 20: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-20

The 68HC11 Microcontroller

STAA edge_cnt ; initialize edge count to 2BSET TMSK1,X IC1I ; enable IC1 interruptCLI ; enable interrupt to the 68HC11

wait TST edge_cnt ; edge_cnt = 0?BNE waitLDD TIC1,X ; get the second edge timeSUBD edge1 ; take the difference of edge 1 and 2STD period ; save the period...

# IC1 interrupt service routine in the followingIC1_ISR LDX #regbas

BCLR TFLG1,X IC1FM ; clear the IC1F flagDEC edge_cntBEQ skip ; is this the second edge?LDD TIC1,X ; save the first edge time in memorySTD edge1 ; “

skip RTIEND

Page 21: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-21

The 68HC11 Microcontroller

C Language Program for Period Measurement (Interrupt-Driven Method)

#include <hc11.h>#include <stdio.h>int edge_cntunsigned int edge1, period;void IC1_ISR ( );

main ( ){

*(unsigned char *)0xe8 = 0x7E; /* $7E is the opcode of JMP */*(void (**)())0xe9 = ICI_ISR; /* set up pseudo vector entry of IC1 */TFLG1 = 0x04; /* clear IC1F flagedge_cnt = 2;TCTL2 = 0x10; /* prepare to capture the rising edge */TMSK1 |= 0x04; /* enable IC1 interrupt locally */INTR_ON ( ); /* enable interrupt globally */while (edge_cnt);period = TIC1 – edge1;printf(“\n The period is %d E clock cycles. \n”, period);return 0;

}

Page 22: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-22

The 68HC11 Microcontroller

#pragma interrupt_handler IC1_ISR ( )void IC1_ISR ( ){

TFLG1 = 0x04; /* clear IC1F flag */if (edge_cnt == 2)

edge1 = TIC1; /* save the first edge */-- edge_cnt;

}

Page 23: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-23

The 68HC11 Microcontroller

Example 8.4 Write a subroutine to measure the pulse width of an unknown signal connectedto the IC1 pin. Return the pulse width in D. The main timer prescale factor is 1. The pulsewidth of the unknown signal is known to be shorter than 32.67 ms.Solution:

- capture the rising edge on the IC1 pin- capture the falling edge on the IC1 pin- take the difference of two captured values

regbas EQU $1000 ; base address of the I/O register blockTFLG1 EQU $23 ; offset of TFLG1 from regbasTIC1 EQU $10 ; offset of TIC1 from regbas TCTL2 EQU $21 ; offset of TCTL2 from regbasIC1rise EQU $10 ; value to select the rising edge of IC1 IC1fall EQU $20 ; value to select the falling edge of IC1 IC1F EQU $04 ; a mask to select the IC1F flagtemp EQU $00 ; offset of temp from the top of the stackpul_width PSHX

PSHYDES ; allocate two bytes for local variable tempDESTSYLDX #regbas

Page 24: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-24

The 68HC11 Microcontroller

LDAA #IC1rise ; configure TCTL2 to capture the rising edge of IC1STAA TCTL2,X ; “LDAA #IC1F ; clear IC1F flagSTAA TFLG1,X ; “

rise BRCLR TFLG1,X IC1F rise ; wait for the arrival of the rising edgeLDD TIC1,X ; save the first edgeSTD temp,Y ; “LDAA #IC1fall ; configure to capture the falling edge of IC1STAA TCTL2,X ; “LDAA #IC1F ; clear IC1F flagSTAA TFLG1,X ; “

fall BRCLR TFLG1,X IC1F fall ; wait for the arrival of the falling edgeLDD TIC1,X ; get the captured time of the second edgeSUBD temp,YINSINSPULYPULXRTS

Page 25: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-25

The 68HC11 Microcontroller

Measuring the period or pulse width of a slow signal (longer than 32.76 ms)

We need to keep track of the number of times that main timer overflows.Let

ovcnt = main timer overflow countdiff = difference of two edgesedge1 = the captured time of the first edgeedge2 = the captured time of the second edge

Case 1: edge2edge1

period (or pulse width) = ovcnt × 216 + diff

Case 2: edge2 < edge1

period (or pulse width) = (ovcnt - 1) × 216 + diff

The main timer overflows at least once in this case.

Page 26: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-26

The 68HC11 Microcontroller

Example 8.5 Write a program to measure the period of an unknown signal, which may be longer than 216 E cycles using the IC1 input capture channel.Solution: The logic flow of the program is shown in Figure 8.17.

Page 27: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-27

The 68HC11 Microcontroller

Start

overflow 0Set up to capture the rising edge.Disable all interrupts.

IC1F = 1?

Clear timer overflow flag.Enable main timer overflow interrupt.

IC1F = 1?

Compute the difference of two edges.

Clear IC1F flag.Save the first captured edge.

yes

yes

no

no

Is second edge smaller?

overflow overflow - 1

Combine the results.

Stop

no

yes

Clear TOF flag.overflow overflow + 1.

Execute the RTI instruction.

Timer overflow interruptservice routine

Figure 8.17 Logic flow for measuring period of slow signals

Page 28: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-28

The 68HC11 Microcontroller

regbas EQU $1000 ; base address of I/O register blockTFLG1 EQU $23 ; offset of TFLG1 from regbasTIC1 EQU $10 ; offset of TIC1 from regbasTCTL2 EQU $21 ; offset of TCTL2 from regbasTMSK1 EQU $22 ; offset of TMSK1 from regbasTMSK2 EQU $24 ; offset of TMSK2 from regbasIC1rise EQU $10 ; value to select the rising edge of IC1

ORG $0000edge1 RMB 2 ; captured time of the first edgeov_cnt RMB 2 ; main timer overflow countperiod RMB 2 ; period of the unknown signal

ORG $00D0 ; setup timer overflow interrupt vector jump table entryJMP tov_ISR ; on EVBORG $C000LDS #$DFFF ; set up stack pointerSEI ; disable all maskable interrupts to the 68HC11CLR ov_cnt ; initialize overflow count to 0CLR ov_cnt+1 ; “LDX #regbas

Page 29: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-29

The 68HC11 Microcontroller

LDAA #IC1rise ; select to capture the rising edgeSTAA TCTL2,X ; “BCLR TFLG1,X $FB ; clear IC1F flagBCLR TMSK1,X $FF ; disable all input capture and output compare interruptsBRCLR TFLG1,X $FB * ; wait for the arrival of the first edge

BCLR TFLG2,X $7F ; clear TOF flagBSET TMSK2,X $80 ; enable timer overflow interruptCLI ; enable interrupt to the 68HC11LDD TIC1,X ; save the captured time of the first edgeSTD edge1 ; “BCLR TFLG1,X $FB ; clear IC1F flagBRCLRTFLG1,X $04 * ; wait for the arrival of the second edgeLDD TIC1,X ; compute the difference of edge2 andSUBD edge1 ; edge1

Page 30: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-30

The 68HC11 Microcontroller

STD period ; “BCC next ; is second edge smaller?LDD ov_cnt ; decrement overflow count if second edge is smallerSUBD #1 ; “STD ov_cnt ; “

next …

tov_ISR LDX #regbasBCLR TFLG2,X $7F ; clear TOF flagLDD ov_cnt ; increment timer overflow countADDD #1 ; “STD ov_cnt ; “RTIEND

Page 31: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-31

The 68HC11 Microcontroller

C Program for Measuring the Period of a Slow Signal

#include <hc11.h>#include <stdio.h>unsigned edge1, overflow;unsigned long period;void TOV_ISR ( );

main ( ){

*(unsigned char *)0xd0 = 0x7E;*(void(**) ( ))0xd1 = TOV_ISR; /* set up TOV pseudo vector entry */

INTR_OFF ( );overflow = 0;TFLG1 = 0xFF; /* clear all output-compare and input-capture flags */TFLG2 = 0x80; /* clear TOF flag */TCTL2 = 0x10; /* configure to capture IC1’s rising edge */TMSK1 = 0x00; /* disable all input capture and output compare interrupts */while (!(TFLG1 & 0x04)); /* wait for the arrival of first rising edge on IC1 */TFLG1 = 0x04;edge1 = TIC1; /* save the first rising edge */

Page 32: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-32

The 68HC11 Microcontroller

TMSK2 = 0x80; /* enable timer overflow interrupt */INTR_ON ( ); /* “ */while (!(TFLG1 & 0x04)); /* wait for the second rising edge */if (TIC1 < edge1) /* if the second edge is smaller, then

overflow --; /* decrement the overflow count */period = overflow * 65536; /* combine the result */period +=TIC1 - edge1; /* “ */printf(“\n The period is %d E clock cycles. \n”, period);return 0;

}

#pragma interrupt_handler TOC_ISR ( )void TOV_ISR ( ){

TFLG2 = 0x80; /* clear TOF flag */overflow ++;

}

Page 33: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-33

The 68HC11 Microcontroller

Output Compare Functions

- five output compare channels: OC1-OC5- port A pins PA7-PA3 are associated with output compare channels OC1-OC5

respectively- Each output compare channel consists of

1. a 16-bit comparator2. a 16-bit compare register (TOCx, x = 1,…,5)3. an output action pin 4. an interrupt request circuit5. a forced-compare function (FOCx, x = 1,…,5)6. control logic

16-bit comparator

TOCx

OCxF

OCxI

FOCx

Interrupt request

Pincontrollogic

OCx Pinx = 1,...,5

Figure 8.18 Output-compare function block diagram

Page 34: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-34

The 68HC11 Microcontroller

- To use an output compare function,

1. make a copy of the main timer 2. add to this copy a value equal to the desired delay3. store the sum onto an output-compare register

- The actions that can be activated on an output compare pin include

1. pull up to high2. pull down to low3. toggle

The action is determined by the timer control register 1 (TCTL1):

OM2 OL2 OM3 OL3 OM4 OL4 OM5 OL5

0 0 0 0 0 0 0 0value after

reset

TCTL1at $1020

OMx OLx

0011

0101

OCx does not afftect pinToggle OCx pin on successful compareClear OCx on successful compareSet OCx pin on successful compare

Figure 8.19 The contents of the TCTL1 register (Reprinted with permission of Motorola)

Page 35: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-35

The 68HC11 Microcontroller

Example 8.6 Generate a 1KHz digital waveform with 40% duty cycle from output comparepin OC2. Use the polling method to check the success of the compare operation. Thefrequency of the E clock is 2 MHz and the prescale factor to the main timer is 1.Solution:

A 1KHz digital with 40% dutycycle has 400 s high and 600s low in one period. The flowchart to generate this waveform is shown in Figure 8.20.

Start

Set OC2 pin to high

Set OC2 action to toggle

Clear OC2F flag

Start OC2 output comparewith a delay of 400 s

OC2F = 1?

Clear OC2F flagStart OC2 output comparewith a delay of 600 s

OC2F = 1?

no

no

yes

yes

Figure 8.20 The program logic flow for digital waveform generation

Page 36: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-36

The 68HC11 Microcontroller

regbas equ $1000 ; base address of I/O register blockPORTA equ $00 ; offset of PORTA from regbasTOC2 equ $18 ; offset of TOC2 from regbasTCNT equ $0E ; offset of TCNT from regbasTFLG1 equ $23 ; offset of TFLG1 from regbastoggle equ $40 ; value to select the toggle actionlotime equ 1200 ; value to set low time to 600 shitime equ 800 ; value to set high time to 400 s

org $C000ldx #regbasbset PORTA,X $40 ; set OC2 pint to highbclr TFLG1,X $BF ; clear OC2F flagldaa #toggle ; select output compare action to bestaa TCTL1,X ; toggleldd TCNT,X ; start an OC2 operation which toggles the OC2 pinaddd #hitime ; with a delay of 800 E clock cyclesstd TOC2,X ; “

high brclr TFLG1,X $40 high ; wait until OC2F is set to 1bclr TFLG1,X $BF ; clear OC2F flagldd TOC2,X ; start another OC2 operation which toggles the OC2 pinaddd #lotime ; with a delay of 1200 E cyclesstd TOC2,X ; “

Page 37: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-37

The 68HC11 Microcontroller

low brclr TFLG1,X $40 low ; wait until OC2F is set to 1bclr TFLG1,X $BF ; clear OC2F flagldd TOC2,X ; start another OC2 operation which toggles the OC2 pinaddd #hitime ; with a delay of 800 E cyclesstd TOC2,X ; “bra highend

Page 38: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-38

The 68HC11 Microcontroller

In C language,

#include <hc11.h>main ( ){

PORTA |= 0x40; /* set OC2 pint to high */TCTL1 = 0x40; /* select toggle as the OC2 pin action */TOC2 = TCNT + 800; /* start an OC2 operation with 800 E cycles as the delay */TFLG1 = 0x40; /* clear OC2F flag */while (1) {

while (!(TFLG1 & 0x40)); /* wait for 400 s */TFLG1 = 0x40;TOC2 += 1200; /* start next OC2 operation with 1200 E cycles as delay */while (!(TFLG1 & 0x40)); /* wait for 600 s */TFLG1 = 0x40;TOC2 += 800;

}return 0;

}

Page 39: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-39

The 68HC11 Microcontroller

Example 8.7 Write a function to generate one second delay using the OC2 function. The E clock is 2 MHz and the prescale factor to the main timer is 1.Solution:

A one-second delay can becreated by performing 40OC2 output compare operations. Each OC2 compare operation creates 25 ms delay.

A memory location is allocated to keep trackof the number of OC2operations that have beenperformed.

Page 40: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-40

The 68HC11 Microcontroller

regbas EQU $1000 ; base address of I/O register blockTOC2 EQU $18 ; offset of TOC2 from regbasTCNT EQU $0E ; offset of TCNT from regbasTFLG1 EQU $23 ; offset of TFLG1 from regbasdly25ms EQU 50000 ; the number of E cycles to generate 25 ms delayonesec EQU 40 ; number of OC2 operations to be performedoc2_cnt EQU 0 ; offset of oc2_cnt from the top of the stack

delay_1s PSHXPSHYDESTSYLDX #regbasBCLR TFLG1,X $BF ; clear OC2F flagLDAA #40STAA oc2_cnt,Y ; initialize oc2_cntLDD TCNT,X

wait ADDD #dly25msSTD TOC2,X ; start an OC2 operation with 25 ms delayBRCLR TFLG1,X $40 * ; wait until OC2F flag is setBCLR TFLG1,X $BF ; clear OC2F flagDEC oc2_cnt,Y

Page 41: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-41

The 68HC11 Microcontroller

BEQ exitLDD TOC2,XBRA wait

exit INSPULYPULXRTS

C function to generate one second delay,void delay_1s ( ){

unsigned char oc2_cnt;oc2_cnt = 100; /* prepare to perform 100 OC2 operation */TFLG1 = 0x40; /* clear OC2F flag */TOC2 = TCNT + 20000; /* start an OC2 operation with 20000 E cycles as the delay */while (oc2_cnt) {

while(!(TFLG1 & 0x40)); /* wait for 10 ms */TFLG1 = 0x40;-- oc2_cnt;TOC2 += 20000; /* start the next OC2 operation */

}}

Page 42: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-42

The 68HC11 Microcontroller

Example 8.8 Suppose an alarm device is already connected properly and the subroutine toturn on the alarm is also available. Write a program to implement the alarm timer--it shouldcall the given alarm subroutine when the alarm time is reached.Solution:

- Use OC2 to create thedelay.

- Perform OC2 operationswith a delay of 20 ms

- Perform 3000 such operations to create adelay of 1 minute.

- Check the alarm timeevery second.

- Call the alarm routineif the alarm time isreached.

- Enable OC2 interrupt

Page 43: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-43

The 68HC11 Microcontroller

regbas equ $1000TOC2 equ $18TCNT equ $0ETFLG1 equ $23TMSK1 equ $22dly20ms equ 40000 ; number of E cycles equivalent to 20 ms delayone_min equ 3000 ; number of OC2 operations to be created to* ; generate 1 minute delay

org $0000hours rmb 1minutes rmb 1ticks rmb 2alarm rmb 2routine fdb start_alarm ; starting address of the alarm routine

org $00DC ; interrupt jump table entry for OC2 on EVBjmp oc2_ISR

org $C000lds #$DFFF ; set up stack pointersei ; disable interrupt before setup is doneldd #one_min ; initialize the OC2 count to generatestd ticks ; one minute delay

Page 44: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-44

The 68HC11 Microcontroller

ldx #regbasbclr TFLG1,X $BF ; clear OC2F flagbset TMSK1,X $04 ; enable OC2 interruptldd TCNT,X ; start an OC2 operation with addd #dly20ms ; 20 ms delaystd TOC2,X ; “cli ; enable interrupt to the 68HC11

forever bra forever ; loop forever to wait for interrupt

oc2_ISR ldx #regbasbclr TFLG1,X $BF ; clear OC2 flagldd TOC2,X ; start the next OC2 operation withaddd #dly20ms ; 20 ms delaystd TOC2,X ; “ldy ticks ; decrement the minute countdey ; “sty ticks ; “bne case2 ; is one minute expired?ldd #one_min ; reinitialize the one-minute counterstd ticks ; “ldd hours ; load the hours and minutes

Page 45: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-45

The 68HC11 Microcontroller

INCBCMPB #60 ; is it time to increment the hour?BNE case1 ; no need to update hour digits yetCLRB ; reset minutes to 0INCA ; increment the hourCMPA #24 ; it is time to reset hours to 0?BNE case1 ; no need to reset hour yetCLRA ; reset hours to 00

case1 STD hours ; save the current time in memoryCPD alarm ; reaches alarm time?BNE case2LDX routineJSR 0,X ; call the alarm routine

case2 RTIEND

Page 46: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-46

The 68HC11 Microcontroller

Example 8.9 LED Flashing. Connect 8 LEDs to port B and flash these LEDs in the following way:

1. Light all LEDs for ¼ seconds and turn them off for ¼ seconds—repeat this pattern 4 times.2. Light one LED at a time for one second—from the LED controlled by the most significant

output port pin to the LED controlled by the least significant port pin.3. Reverse the order of display in step 2.4. Turn off all of the LEDs.

5V

PB7

PB6

PB5

PB4

PB3

PB2

PB1

PB0

74LS04 100

68HC11A8

Figure 8.21 An LED-flashing circuit driven by port B

Page 47: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-47

The 68HC11 Microcontroller

unsigned char flas_tab [25][2] = {{0xFF, 25}, {0x00, 25}, {0xFF, 25} {0x00, 25}, {0xFF, 25},{0x00, 25}, {0xFF, 25}, {0x00, 25}, {0x80, 100}, {0x40, 100}, {0x20, 100}, {0x10, 100},{0x08,100}, {0x04, 100}, {0x02, 100}, {0x01, 100}, {0x01, 100}, {0x02, 100}, {0x04, 100}, {0x08, 100}, {0x10, 100}, {0x20, 100}, {0x40, 100}, {0x80, 100},{0x00,100}};

void delay (char k);void flash ( ){

int i;for (i = 0; i < 25; i++) {

PORTB = flash_tab [i][0];delay (flash_tab[i][1]);

}}void delay (char k){ TFLG1 = 0x40; /* clear OC2F flag */

TOC2 = TCNT + 20000; /* start an OC2 operation */while (k) {

while (!(TFLG1 & 0x40));TFLG1 = 0x40;-- k;TOC2 += 20000; /* start a new OC2 operation */

}}

Page 48: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-48

The 68HC11 Microcontroller

Using OC1 to Control Multiple OC Functions

- OC1 can control up to five OC pins- Specify the OC pins to be controlled by OC1 using the register OC1M.- Specify the value that any OCx (x = 1,…,5) pin to assume when the value of TOC1 equals

TCNT using the OC1D register. - When a successful OC1 compare is made, each affected pin assumes the value of the

corresponding bit of OC1D.- The OC1 (PA7) pin is bidirectional. For this pin to be controlled by OC1 function, it must

be configured for output. The direction of PA7 pin is controlled by the bit 7 of the PACTLregister. Set bit 7 of PACTL to 1 to configure PA7 pin for output.

value afterreset 0 0 0 0 0 0 0 0

7 6 5 4 3 2 1 0

M7 M6 M5 M4 M3 0 0 0OC1Mat $100C

value afterreset 0 0 0 0 0 0 0 0

7 6 5 4 3 2 1 0

D7 D6 D5 D4 D3 0 0 0OC1Dat $100D

PA7 OC2 OC3 OC4 OC5 pin controlled

Figure 8.22 Contents of the OC1M and OC1D registers (Reprintedwith permission of Motorola)

Page 49: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-49

The 68HC11 Microcontroller

Example 8.9 Write values into OC1M and OC1D so that OC2 and OC3 pins will assume the values of 0 and 1 when the OC1 compare operation succeeds.Solution:

- Set bits 6 and 5 of OC1M to 11 - Set bits 6 and 5 of OC1D to 01

regbas EQU $1000OC1M EQU $0COC1D EQU $0D

LDX #regbasLDAA #%01100000STAA OC1M,XLDAA #%00100000STD OC1D…

In C language

OC1M = 0x60;OC1D = 0x20;

Page 50: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-50

The 68HC11 Microcontroller

Example 8.11 An application requires control of five valves. The first, third, fifth valvesshould be opened for five seconds and then closed for five seconds. When these three valvesare closed, the second and fourth valves are opened, and vise versa. This process is repeated forever. Pins OC1,…,OC5 are used to control these five valves. When the OCx pin is high,the corresponding valve will be opened. Write a program to perform the operation.Solution:

- The OC1 pin (same as PA7) is bi-directional, to use it to control a valve, it must be configured for output. Set the bit 7 of the PACTL register to 1.

- Write the value %11111000 into OC1M so that OC1 function can control all five OC pins.- Write the value %10101000 into OC1D to open only valves 1,3,and 5.- Write the value %01010000 into OC1D to open only valves 2 and 4.- Perform 200 OC1 output compare operations with each operation creating 25 ms delay.

regbas EQU $1000PACTL EQU $26OC1D EQU $0DOC1M EQU $0CTOC1 EQU $16TCNT EQU $0ETFLG1 EQU $23oc1m_in EQU $F8 ; value to initialize OC1Moc1d_in1 EQU $A8 ; value to initialize OC1D to open valves 1, 3, and 5

Page 51: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-51

The 68HC11 Microcontroller

oc1d_in2 equ $50 ; value to initialize OC1D to open valves 2 and 4five_sec equ 200 ; number of OC1 operations to be performeddly25ms equ 50000 ; the number of E clock cycles equivalent to 25 ms

ORG $0000oc1_cnt rmb 1 ; number of OC1 operations remained to be performed

ORG $C000ldx #regbasbset PACTL,X $80 ; configure PA7 pin for outputldaa #oc1m_in ; allow OC1 function to control all OC pinsstaa OC1M,X ; “bclr TFLG1,X $7F ; clear OC1F flagldaa #five_secstaa oc1_cntldaa #oc1d_in1 ; set pins OC1, OC3, and OC5 to high after 25 msstaa OC1D,Xldd TCNT,X ; start an OC1 operation with 25 ms delay

repeat1 addd #dly25ms ; “std TOC1,X ; “brclr TFLG1,X $80 * ; wait for 25 msbclr TFLG1,X $7F ; clear OC1F flag

Page 52: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-52

The 68HC11 Microcontroller

dec oc1_cnt ; decrement the output compare countbeq change ; at the end of 5 seconds change the valves settingldd TOC1,X ; prepare to perform the next OC1 operationbra repeat1

change ldaa #oc1d_in2 ; set to open valves 2 and 4staa OC1D,X ; “ldaa #five_sec ; reinitialize the output compare countstaa oc1_cnt ; “

repeat2 ldd TOC1,X ; start the next OC1 operation with the sameaddd #dly25ms ; delaystd TOC1,X ; “brclr TFLG1,X $80 * ; wait until OC1F flag is set to 1bclr TFLG1,X $7F ; clear OC1F flagdec oc1_cnt

beq switch ; five seconds expired, switch the valve settingbra repeat2

switch ldaa #five_sec ; reinitialize the OC1 countstaa oc1_cnt ; “ldaa #oc1d_in1 ; change the valve settingstaa OC1D,X ;ldd TOC1,X ; prepare to start the next OC1 operationbra repeat1end

Page 53: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-53

The 68HC11 Microcontroller

#include <hc11.h>main (){

unsigned int oc1_cnt;PACTL |= 0x80; /* configure PA7 for output */OC1M = 0xF8; /* allow OC1 to control OC1-OC5 pins */TFLG1 = 0x80; /* clear OC1F flag */TOC1 = TCNT + 20000; /* start an OC1 operation with 10 ms delay */while (1) {

OC1D = 0xA8; /* prepare to set PA7, PA5, and PA3 to high */oc1_cnt = 500; /* number of OC1 operations to create 5 s delay */while (oc1_cnt) {

while (!(TFLG1 & 0x80));TFLG1 = 0x80; /* clear OC1F flag */TOC1 += 20000; /* start the next OC1 operation */oc1_cnt --;

}OC1D = 0x50; /* value to pull PA6 and PA4 to high */oc1_cnt = 500;while (oc1_cnt) {

while (!(TFLG1 & 0x80));TFLG1 = 0x80; /* clear OC1F flag */TOC1 += 20000; /* start the next OC1 operation */oc1_cnt --;

}}

}

Page 54: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-54

The 68HC11 Microcontroller

OC1 function can control an output compare pin that has been controlled by anotheroutput compare function. This allows two output compare functions to control the samepin.

Example 8.12 Use OC1 and OC2 together to generate a 5KHz digital waveform with 40%duty cycle. Solution:

- Use OC1 function to pull OC2 pin to high every 200 s.- Use OC2 function to pull OC2 pin to low 80 s later.- Enable both OC1 and OC2 interrupts- The interrupt service routines of OC1 and OC2 clear the flag and then start their associated

output compare operations with 200 s delay.

OC2

80 s

120 s

68HC11

Figure 8.23 Using OC1 and OC2 to generate a 40% duty cycle waveform

Page 55: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-55

The 68HC11 Microcontroller

regbas equ $1000TMSK1 equ $22PORTA equ $00OC1D equ $0DOC1M equ $0CTOC1 equ $16TOC2 equ $18TCTL1 equ $20TFLG1 equ $23tctl1_in equ $80 ; value to set the OC2 action to be pull the OC2 pin to lowoc1m_in equ $40 ; value to allow OC1 function to control OC2 pinoc1d_in equ $40 ; value to be written into OC1D to pull OC2 to highfiveKHz equ 400 ; timer count for 5 KHz (2 MHz E clock cycles)diff equ 160 ; the count difference of two output compare functions

org $00DCjmp oc2_ISR ; interrupt vector jump table entry for OC2jmp oc1_ISR ; interrupt vector jump table entry for OC1

org $C000lds #$DFFFldx #regbasbclr TFLG1,X $3F ; clear OC1F and OC2F flags

Page 56: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-56

The 68HC11 Microcontroller

ldaa #tctl1_in ; define OC2 action to pull OC2 pin to lowstaa TCTL1,X ; “ldaa #oc1d_in ; define OC1 action to pull OC2 pin to highstaa OC1D,X ; “ldaa #oc1m_in ; allow OC1 function to control OC2 pinstaa OC1M,X ; “bset TMSK1,X $C0 ; enable OC1 and OC2 interruptsbclr PORTA,X $40 ; pull OC2 pin to lowldd TCNT,X ; start the OC1 operation with a delay of 200 saddd #fiveKHz ; “std TOC1,X ; “addd #diff ; start the OC2 operation std TOC2,X ; “cli ; enable interrupt to the 68HC11

loop bra loop ; infinite loop to wait for OC1 and OC2 interrupts

Page 57: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-57

The 68HC11 Microcontroller

* The OC1 interrupt service routine is in the followingoc1_ISR bclr TFLG1,X $7F ; clear OC1 flag

ldd TOC1,X ; start the next OC1 operation with a delay of 200 s addd #fiveKHz ; “std TOC1,X ; “rti

* The OC2 interrupt service routine is in the followingoc2_ISR bclr TFLG1,X $BF ; clear OC2 flag

ldd TOC2,X ; start the next OC2 operation with a delay of 200 s addd #fiveKHz ; “std TOC2,X ; “rtiend

Page 58: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-58

The 68HC11 Microcontroller

C Language Program Using OC1 & OC2 to generate a waveform

#include <hc11.h>void OC1_ISR ( );void OC2_ISR ( );main ( ){

*(unsigned char *)0xdf = 0x7E;*(void (**)())0xe0 = OC1_ISR ( );*(unsigned char *)0xdc = 0x7E;*(void (**)())0xdd = OC2_ISR ( );OC1M = 0x40; /* allow OC1 to control OC2 pin */OC1D = 0x40; /* configure OC1 to pull OC2 to high */TCTL1 = 0x80; /* configure OC2 to pull OC2 pin to low */PORTA &= 0xBF; /* pull OC2 pin to low */TOC1 = TCNT + 400; /* start an OC1 operation with 400 E cycles as delay */TOC2 = TOC1 + 160; /* start OC2 operation that succeed 160 E cycles later */TMSK1 |= 0xC0; /* enable OC1 and OC2 interrupts */INTR_ON ( );while (1); /* infinite loop */return 0;

}

Page 59: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-59

The 68HC11 Microcontroller

#pragma interrupt_handler OC1_ISR ( )void OC1_ISR ( ){

TFLG1 = 0x80;TOC1 += 400; /* start the next OC1 operation */

}#pragma interrupt_handler OC2_ISR ( )void OC2_ISR ( ){

TFLG1 = 0x40;TOC2 += 400; /* start the next OC2 operation */

}

Page 60: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-60

The 68HC11 Microcontroller

Forced Output Compare

- Useful when the user requires the output compare to succeed immediately after being started

- Write a 1 to the corresponding bit of the CFORC register to force an outputcompare operation

- The forced output compare operation only causes pin action. Neither the flag isset to 1 nor the interrupt is generated.

FORC1 FORC2 FORC3 FORC4 FORC5 0 0 0

0 0 0 0 0 0 0 0

7 6 5 4 3 2 1 0

value afterreset

CFORCat $100B

Figure 8.24 Contents of the CFORC register (Redrawn with permission of Motorola)

Page 61: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-61

The 68HC11 Microcontroller

Example 8.13 Suppose that the contents of the TCTL1 register are %10011000. What would occur on pins PA6-PA3 on the next clock cycle if the value %01111000 is writteninto the CFORC register?Solution:

The contents of TCTL1 configure the output compare actions in Table 8.5

- CFORC specifies that OC2-OC5 are to be forced.- Pin PA6 will be pulled low- Pin PA5 will be toggled- Pin PA4 will be pulled low- Pin PA3 will not be affected

Bit positions

7 65 43 21 0

Value

1 00 11 00 0

Action to be triggered

clear OC2 pintoggle OC3 pinclear OC4 pinno effect on OC5 pin

Table 8.5 Pin actions on OC2-OC5 pins

Page 62: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-62

The 68HC11 Microcontroller

Real-Time Interrupt (RTI)

- Will generate periodic interrupts if enabled.- The RTI interrupt period is programmable by programming the bits 1 and 0 of the

PACTL register (see table 8.6).- RTI interrupt is enabled by setting the bit 6 of the TMSK2 register- The bit 6 of the TFLG2 register will be set to 1 on a RTI interrupt

Example 8.14 Use the RTI function to create a delay of 10 seconds.Solution:

- Select the prescale factor of 8 that will set the interrupt period to 32.67 ms- Need to enable RTI interrupt- 305 RTI interrupts will roughly create a delay of 10 seconds

RTR1bit 1

RTR0bit 0

(E/2 13 ) divided by

0011

0101

1248

Table 8.6 RTI clock source prescale factor

Page 63: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-63

The 68HC11 Microcontroller

regbas EQU $1000TMSK2 EQU $24TFLG2 EQU $25PACTL EQU $26tensec EQU 305 ; total RTI interrupts in 10 sRTIF EQU $40 ; mask to select the RTIF flag

ORG $0000rti_cnt RMB 2 ; remaining RTI interrupts to be generated

ORG $00EB ; RTI interrupt vector jump table entryJMP rti_hnd ; “ORG $C000LDS #$DFFF ; initialize stack pointerLDX #regbasLDD #tensecSTD rti_cntBSET PACTL,X $03 ; select RTI clock prescale factor to 8LDAA #RTIFSTAA TFLG2,X ; clear RTIF flagSTAA TMSK2,X ; enable RTI functionCLI ; enable interrupt to the 68HC11

loop LDD rti_cnt ; wait until rti_cnt becomes 0BNE loopSWI

Page 64: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-64

The 68HC11 Microcontroller

RTI service routine is as follows:

rti_hnd LDX #regbasBCLR TFLG2,X $BFLDX rti_cntDEXSTX rti_cntRTI

Start

Set RTI clock prescale factor to 8RTI_cnt 305

Clear RTIF flag in FLG2Enable RTI interrupt

RTI_cnt = 0?

Stop

Clear RTIF flag in TFLG2RTI_cnt RTI_cnt - 1

Return from interrupt

Figure 8.25 Using RTI to create a 10-second delay

Page 65: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-65

The 68HC11 Microcontroller

C Function that Uses RTI To Create 10-Second Delay

int rti_cnt; /* number of RTI interrupts remained */void delay_10s ( ){

rti_cnt = 305;PACTL |= 0x03; /* set RTI clock prescale factor to 8 */TFLG2 = 0x40; /* clear RTIF flag */TMSK2 |= 0x40; /* enable RTI interrupt */INTR_ON ( ); /* “ */while (rti_cnt);TMSK2 &= 0xBF; /* disable RTI interrupt */

}#pragma interrupt_handler RTI_ISR ( )void RTI_ISR ( ){

TFLG2 = 0x40; /* clear RTIF flag */rti_cnt --;

}

Page 66: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-66

The 68HC11 Microcontroller

The Pulse Accumulator

- 8-bit pulse accumulator (PACNT)- two operation modes: event counting and gated accumulation modes- PACNT is clocked by the PAI input in event counting mode- PACNT is clocked by the E-divided-by-64 clock in gated accumulation mode- The PAI pin (PA7 pin) must be configured for input to enable pulse accumulator- There are two interrupt sources: PAI pin edge and the rollover of PACNT from $FF to $00- Four registers are related to the operation of the PACNT: TMSK2, TFLG2, PACTL, PACNT

0 0 0 0 0 0 0 0Value after

reset

TMSK2at $1024

0 0 0 0 0 0 0 0Value after

reset

TFLG2at $1025

0 0 0 0 0 0 0 0Value after

reset

PACTLat $1026

- - - - - - - -Value after

reset

PACNTat $1027

7 6 5 4 3 2 1 0

TOI RTII PAOVI PAII 0 0 PR1 PR0

TOF RTIF PAOVF PAIF 0 0 0 0

DDRA7 PAEN PAMOD PEDGE 0 0 RTR1 RTR0

bit 7 bit 6 bit 5 bit 4 bit 3 bit 2 bit 1 bit 0

Figure 8.26 Registers related to the pulse accumulator function (Redrawn with permission ofMotorola)

Page 67: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-67

The 68HC11 Microcontroller

Pulse Accumulator Control Register (PACTL)

- bit 7 (DDRA7): 0 -- configure PA7 pin for input; 1 -- configure PA7 for output- bit 6 (PAEN): 0 -- disable PA function; 1 -- enable PA function- bit 5 (PAMOD): 0 -- select event-counting mode; 1 -- select gated accumulation mode- bit 4 (PEDGE): its meaning depends on bit 5

- The bits 5 and 4 of TMSK2 enables/disables PACNT overflow and PAI edge interrupt respectively.

- The bits 5 and 4 of TFLG2 are pulse accumulator overflow and PAI edge flag respectively.

PAMOD PEDGE Action on clock

0011

0101

PAI falling edge increments the counterPAI rising edge increments the counterA 0 on PAI inhibits countingA 1 on PAI inhibits counting

Table 8.7 Combinations of PAMOD and PEDGE bits

Page 68: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-68

The 68HC11 Microcontroller

Example 8.15 Interrupt after N events. Events are converted into signal edges and areconnected to the PAI pin. N is smaller than 255. Write a program to interrupt the 68HC11after N event.Solution:regbas EQU $1000TMSK2 EQU $24TFLG2 EQU $25PACTL EQU $26PACNT EQU $27PA_INI EQU $50 ; value to enable PA, select event-counting mode,

; falling edge activeN EQU …. ; event count

ORG $C000LDX #regbasBCLR TFLG2,X $DF ; clear the PAOVF flagLDAA #NNEGA ; complement NSTAA PACNT,X ; initialize PACNT to -NLDAA #PA_INISTAA PACTL,XBSET TMSK2,X $20 ; enable the PACNT overflow interruptCLI ; enable interrupt to the 68HC11END

Page 69: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-69

The 68HC11 Microcontroller

C Program that Interrupts After N Events

#include <hc11.h>void PAOV_ISR ( );main ( ){

*(unsigned char *)oxcd = 0x7E;*(void (**)())0xce = PAOV_ISR;PACNT = ~N + 1; /* place -N in PACNT */PACTL = 0x50; /* configure PA function */TMSK2 |= 0x20; /* enable PAOV interrupt */INTR_on ( );…

}

#pragma interrupt_handler PAOV_ISR ( )void PAOV_ISR ( ){

…}

Page 70: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-70

The 68HC11 Microcontroller

Use the PA function to measure frequency

- Set up pulse accumulator to operate in event-counting mode- Connect the unknown signal to the PAI pin- Select the active edge (rising or falling)- Use one of the output compare function to create a delay of one second- Use a memory location to keep track of the number of active edges arrived in one

second.- Enable pulse accumulator interrupt on active edge. The PA interrupt service

routine increments the signal count by 1.- Disable the pulse accumulator interrupt at the end of one second.

Example 8.16 Write a program to measure the frequency of an unknown signal connected to the PAI pin.Solution:

- use OC2 function to perform 40 operations to create a delay of one second- each OC2 operation creates a delay of 25 ms- enable PAI edge interrupt- on a PAI edge interrupt, increment the frequency count by 1

Page 71: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-71

The 68HC11 Microcontroller

regbas EQU $1000TCNT EQU $0ETOC2 EQU $18TFLG1 EQU $23TMSK2 EQU $24TFLG2 EQU $25PACTL EQU $26PACNT EQU $27oc2dly EQU 50000 ; output compare count for 25 ms delaypa_in EQU $50 ; value to enable PA, select event-counting mode, rising * ; edge as active edge, * ; and set PA pin for inputonesec EQU 40 ; number of OC2 operations to be performedstop EQU $10 ; value to disable the PA interrupt

ORG $0000oc2_cnt RMB 1freqcy RMB 2 ; active edge count in one second

ORG $CA ; interrupt vector jump table entry for PAI edgeJMP pa_ISR ; “

Page 72: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-72

The 68HC11 Microcontroller

ORG $C000LDS #$DFFFLDX #regbasLDAA #onesecSTAA oc2_cnt ; initialize OC2 countLDD #0STD freqcy ; initialize frequency counter to 0LDAA #pa_in ; initialize the PA functionSTAA PACTL,X ; “BCLR TFLG2,X $EF ; clear the PAIF flagBSET TMSK2,X $10 ; enable the PAI edge interruptCLI ; enable interrupt to the 68HC11LDD TCNT,X ; start an OC2 operation with a delay

sec_loop ADDD #oc2dly ; of 25 msSTD TOC2,X ; “BCLR TFLG1,X $BF ; clear OC2F flagBRCLR TFLG1,X $40 * ; wait for 25 ms LDD TOC2,XDEC oc2_cntBNE sec_loop ; if 1 second is not expired, continue.LDAA #stop ; disable PAI edge interruptSTAA TMSK2,X ; “SWI ; return to BUFFALO monitor

Page 73: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-73

The 68HC11 Microcontroller

pa_ISR LDX #regbasBCLR TFLG2,X $EF ; clear the PAIF flagLDX freqcy ; increment frequency counterINX ; “STX freqcy ; “RTIEND

Page 74: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-74

The 68HC11 Microcontroller

C Program that Uses PAI to Measure the Frequency

#include <hc11.h>#include <stdio.h>void PAI_ISR ( );unsigned int frequency;main ( ){

unsigned int oc2_cnt;*(unsigned char *)0xca = 0x7E;*(void (**)())0xcb = PAI_ISR;frequency = 0;PACTL = 0x50;TFLG2 = 0x10; /* clear PAIF flag */oc2_cnt = 100; /* total OC2 operations to be performed */TOC2 = TCNT + 20000; /* start an OC2 operation with 20000 E cycles as delay */TFLG1 = 0x40; /* clear OC2F flag */TMSK2 |= 0x10; /* enable PAI interrupt */INTR_ON ( ); /* “ */while (oc2_cnt) {

Page 75: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-75

The 68HC11 Microcontroller

while (!(TFLG1 & 0x40)); /* wait for 20000 E cycles */TFLG1 = 0X40;TOC2 += 20000;oc2_cnt --;

}TMSK2 &= 0xEF; /* disable PAI interrupt */INTR_OFF ( ); /* “ */printf(“\n The frequency of the unknown signal is %d \n”, frequency);return 0;

}

#pragma interrupt_handler PAI_ISR ( )PAI_ISR ( ){

TFLG2 = 0x10; /* clear PAIF flag */frequency ++;

}

Drawback of Using PAI interrupt

- interrupt handling overhead is too high- can only measure frequency up to about 43KHz.

Page 76: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-76

The 68HC11 Microcontroller

Using the PA function to measure the duration of an unknown signal

- The gated accumulation mode can be used to measure the duration of an unknown signal.- Initialize PACNT to 0.- Select the falling edge of the PAI signal as the active edge. An interrupt will be generated

on the falling edge.- Enable the PAI interrupt and wait for the arrival of the PAI active edge- Stop the PA function when the interrupt occurs.- The number of times that PACNT overflows should be kept track of in order to measure

a very slow signal.

pulse width = (28 × paov_cnt + pacnt) × 64 × TE

where, paov_cnt is the PACNT overflow count,pacnt is the contents of the PACNT counter when interrupt occurs.

Example 8.17 Write a program to measure the duration of an unknown signal connected to thePAI pin.Solution:

Page 77: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-77

The 68HC11 Microcontroller

regbas equ $1000TCNT equ $0ETMSK2 equ $24TFLG2 equ $25PACTL equ $26PACNT equ $27stop equ $00 ; value to stop the pulse accumulatorpa_in equ %01100000 ; value to be written into PACTL to enable PA, select gated* ; accumulation mode, and set PAI to be active high

org $00paov_cnt rmb 2 ; keep track of PACNT overflow countpa_cnt rmb 1 ; holds the contents of the PACNT at the end of measurementedge rmb 1 ; PAI edge interrupt count

org $00CA ; set up interrupt vector jump table entries for PAOV and PAIjmp pai_hnd ; “jmp paov_hnd ; “

Page 78: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-78

The 68HC11 Microcontroller

ORG $C000LDS #$DFFFLDX #regbasLDD #0STD paov_cnt ; initialize the PACNT overflow count to 0LDAA #1STAA edge ; initialize PAI signal edge count to 1BCLR TFLG2,X $CF ; clear PAOVF and PAIF flags to 0LDAA #pa_inSTAA PACTL,X ; initialize the PA functionCLR PACNT,X ; reset the PACNT counter to 0BSET TMSK2,X $30 ; enable the PAOV and PAI edge interruptsCLI ; enable interrupt to the 68HC11

wait TST edge ; wait for the arrival of PAI falling edgeBNE wait ; “BCLR PACTL,X $40 ; disable the PA functionLDAA PACNT,X ; make a copy of PACNTSTAA pa_cnt ; “SWI

Page 79: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-79

The 68HC11 Microcontroller

* the PAI interrupt service routine is in the followingpai_hnd BCLR TFLG2,X $EF ; clear the PAIF flag

DEC edge ; reset the edge flag to 0RTI

* The PAOV interrupt service routine is in the followingpaov_hnd BCLR TFLG2,X $DF ; clear the PAOVF flag

LDD paov_cnt ; increment the PAOV countADDD #1 ; “STD paov_cnt ; “RTIEND

Page 80: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-80

The 68HC11 Microcontroller

C Program for Measuring Pulse Width Using PA Gated Accumulation Mode

#include <hc11.h>#include <stdio.h>void PAI_ISR ( );void PAOV_ISR ( );unsigned int paov_cnt, pai_cnt, edge;

main ( ){

unsigned long pulse_width;

*(unsigned char *)0xca = 0x7E;*(void (**)())oxcb = PAI_ISR;*(unsigned char *)0xcd = 0x7E;*(void (**)())0xce = PAOV_ISR;paov_cnt = 0;edge = 1;TFLG2 = 0x30; /* clear PAIF and PAOVF flags */PACTL = 0x60;PACNT = 0;TMSK2 |= 0x30; /* enable PAI and PAOV interrupts */

Page 81: Chapter 8: 68HC11 Timer Functions

H. Huang Transparency No.8-81

The 68HC11 Microcontroller

INTR_ON ( );while (edge);PACTL &= 0xBF; /* disable PA function */pulse_width = paov_cnt << 8 + PACNT;printf(“\n The pulse width of the signal is %d \n”, pulse_width);return 0;

}

#pragma interrupt_handler PAI_ISR ( )void PAI_ISR ( ){

TFLG2 = 0x10; /* clear PAIF flag */edge --;

}#pragma interrupt_handler PAOV_ISR ( )void PAOV_ISR ( ){

TFLG2 = 0x20; /* clear PAOVF flag */paov_cnt ++;

}