
S1C88348/317/316/308 TECHNICAL SOFTWARE
EPSON
II-97
15 ANALOG COMPARATOR
Notes
(1) A delay routine for the operation stabilization waiting time (3 msec, maximum) of the analog compa-
rator is not included in this program example, so it is necessary to create it using a hardware timer or
software timer. (external call: comp_delay)
(2) P17–P14 terminals are common to the analog comparator inputs (CMPM0, CMPP0, CMPM1 and
CMPP1) and the I/O port, and these are switched to I/O port terminals when the analog comparator
is turned OFF. Consequently, for an I/O port which is used for an analog comparator, be sure to set
in input mode.
Source List
Control of analog comparator
external
comp_delay
public
comp_init,comp_control
;
br_io
equ
0ffh
;base reg. address (set i/o area)
comp_mode
equ
00ff13h
;analog comparator mode set reg.
ioc1
equ
00ff61h
;p1x i/o control reg.
p1d
equ
00ff63h
;p1x port data
code
(1) Initialization for analog comparator
;************************************************************************
;*
*
;*
comparator control
*
;*
*
;************************************************************************
;*** initialize routine
comp_init:
ld
br,#br_io
;set br reg. address to 0ffxxh
or
[br:low p1d],#11110000b
;set p17-14="h"
and
[br:low ioc1],#00001111b
;set p17-14=input mode
ret
(2) Data reading for analog comparator
;************************************************************************
;*** control routine
comp_control:
or
[br:low comp_mode],#00001100b
;comparator 0&1 on
carl
comp_delay
;comparator stable delay ***
bit
[br:low comp_mode],#00000001b
;comparator 0 on ?
jrs
z,comp_control00
; comparator 0 : + > -
;
jrs
comp_control01
; comparator 0 : + < -
comp_control00:
;
comp_control01:
bit
[br:low comp_mode],#00000010b
;comparator 1 on ?
jrs
z,comp_control02
; comparator 1 : + > -
;
jrs
comp_control03
; comparator 1 : + < -
comp_control02:
;
; comparator processing end
comp_control03:
and
[br:low comp_mode],#00001100b
ret
;
end
(1)
(2)