
II-84
EPSON
S1C88348/317/316/308 TECHNICAL SOFTWARE
12 PROGRAMMABLE TIMER
Source List
;************************************************************************
;*** start measure counter (16-bit timer 0)
;
(user program)
;
wait_loop:
ld
a,[lod ovf_flag]
cp
a,#0ffh
;measure counter overflow ?
jrs
nz,measure_init00
;--> normal
;************************************************************************
;*** measure counter overflow processing
;
(user program)
;
jrs
measure_init02
;*** normal processing
measure_init00:
;
(user program)
;
measure_init02:
jrs
wait_loop
;-->
;************************************************************************
;*** end processing
and
[br:low pt_mode1],#11111110b
;stop measure counter
measure_init01:
carl
osc3toosc1
;change osc3 to osc1 ***
ret
(4) Interrupt processing for 16-bit pulse width measurement timer
;****************************************************************************
;*
*
;* measure counter (16-bit timer 0) interrupt processing routine (overflow) *
;*
*
;****************************************************************************
measure_intr:
push
ale
;
ld
br,#br_io
;set br reg. address to 0ffxxh
;
ld
a,#0ffh
ld
[lod ovf_flag],a
;event counter overflow flag set
and
[br:low pt_mode1],#11111110b
;measure counter stop
;
measure counter overflow processing
;
and
[br:low intr_fac1],#10000000b
;clear fpt1 interrupt flag
pop
ale
rete
;************************************************************************
;*
*
;*
k1x interrupt processing routine
*
;*
*
;************************************************************************
k1x_intr:
push
ale
;
ld
br,#br_io
;set br reg. address to 0ffxxh
;
bit
[br:low kcp1],#00000001b
;kcp setting ?
jrs
z,k1x_intr01
;falling edge -> rising edge
and
[br:low kcp1],#11111110b
;set rising edge
jrs
k1x_intr00
;rising edge -> falling edge
k1x_intr01:
or
[br:low kcp1],#00000001b
;set falling edge
ld
ba,[lod ptd0]
ld
[lod count],ba
;read measure count data
or
[br:low pt_mode1],#00000010b
;set measure counter init data (max.)
k1x_intr00:
and
[br:low intr_fac1],#00100000b
;clear fk1 interrupt flag
pop
ale
rete
end