
MOTOROLA
10-26
MAIN TIMER AND REAL-TIME INTERRUPT
M68HC11
REFERENCE MANUAL
c191 a6 25
c193 2a 23
c195 7a d0 07
[4]
[3]
[6]
LDAA
BPL
DEC
TFLG2,X
OU3IC1
OVCNT1
Check for TOF in MSB
If no overflow, you’re done
This TOF shouldn’t count
* decrement OVCNT1 to -1, TOF svc routine will inc to 0
This example demonstrates the idea of indicating the TOF should not count rather
than directly clearing it to make it not count. Although the TOF is not needed for this
period measurement function, it may be needed for some other function that might be
in progress. Although the three input-capture functions and the five output-compare
functions are effectively independent of each other, they are all specifically related to
the single, 16-bit, free-running counter and thus share the overflow mechanism. The
capture and compare functions can independently monitor the overflow, but they
should not directly interfere with its operation.
*** initialization - (see full listing) ***
c114 ce 10 00
c117 86 10
c119 a7 21
c11b 86 ff
c11d b7 d0 06
c120 7f d0 05
c123 1d 23 fb
c126 1d 25 7f
c129 1c 22 04
c12c 1c 24 80
c12f 0e
[3]
[2]
[4]
[2]
[4]
[6]
[7]
[7]
[7]
[7]
[2]
PER24T
LDX
LDAA
STAA
LDAA
STAA
CLR
BCLR
BCLR
BSET
BSET
CLI
#REGBAS
#%00010000
TCTL2,X
#$FF
IC1MOD
IC1DUN
TFLG1,X $FB clear IC1F (if any)
TFLG2,X $7F clear TOF (if any)
TMSK1,X $04 enable IC1 interrupts
TMSK2,X $80 enable TOF interrupts
Enable Interrupts
Point to register block
EDG1B:EDGIA - 0:1
IC1 rising edges
FF-IC1 off; 0-1st edge; 1-last
Signal period not done
c130 b6 d0 05
c133 27 fb
c135 0f
[4]
[3]
[2]
WAITL3
LDAA
BEQ
SEI
IC1DUN
WAITL3
Sets after period done
Loop till period has been timed
Done, disable interrupts
** display results - (see full listing)
***
* SV3TOF - Timer Overflow service routine
*
* Called whenever any timer overflow is detected.
* If the IC1 period measurement is in progress
* (IC1MOD positive) then the overflow counter
* (upper 8-bits of period) is incremented.
***
SV3TOF
TST
IC1MOD
BMI
OU3TOF
INC
OVCNT1
OU3TOF
LDAA
#$80
STAA
REGBAS+TFLG2Clear overflow flag
RTI
c171 7d d0 06
c174 2b 03
c176 7c d0 07
c179 86 80
c17b b7 10 25
c17e 3b
[6]
[3]
[6]
[2]
[4]
[12]
0 or 1, IC1 active; count TOFs
if neg, IC1 not active
increment IC1 overflow count
** Return from TOF service **
Figure 10-8 Measuring Long Periods with Input Capture and TOF (Sheet 1 of 2)
***