
S1C88348/317/316/308 TECHNICAL SOFTWARE
EPSON
II-51
9 SERIAL INTERFACE 2 (ASYNCHRONOUS INTERFACE)
(2)
(3)
Source List
asyncrv03:
ld
a,[br:low ser]
and
a,#00000001b
ld
[br:low ser],a
;rxen=0 (dis.) async reset
and
[br:low pt_mode2],#00011100b
;timer 1 stop (baud rate)
carl
osc3toosc1
;change osc3 to osc1 ***
ret
(3) Transmitting of asynchronous serial interface (8-bit mode)
;************************************************************************
;*
*
;*
async 8-bit mode trans (p13 and 12 = hand shake:not use)
*
;*
*
;************************************************************************
;*** control routine
asynctr:
ld
br,#br_io
;set br reg. address to 0ffxxh
carl
osc1toosc3
;change osc1 to osc3 ***
ld
a,[lod vdd_ngf]
;vdd ng flag
cp
a,#0ffh
jrl
z,asynctr02
;vdd error
;psc=1/1*fosc3(4.9152mhz),timer1=reload mode and reload data set to timer 1
ld
[br:low pt_mode2],#00000110b
or
[br:low pt_mode2],#00000001b
;timer 1 start (baud rate)
ld
iy,#lod trans_buffer
;trans data buffer
ld
b,#0
;set trans counter (00h=256)
ld
a,[br:low ser]
and
a,#00000100b
ld
[br:low ser],a
;txen=0 (dis.) async reset
xor
a,a
ld
[lod trans_flag],a
;async trans interrupt flag clear
ld
a,[br:low ser]
and
a,#00000100b
or
a,#00000001b
ld
[br:low ser],a
;txen=en.
;no hand shake
asynctr00:
ld
a,[iy]
;load trans data buffer
ld
[br:low trxd],a
;set trans data
inc
iy
;trans buffer + 1
ld
a,[br:low ser]
and
a,#00000101b
or
a,#00000010b
ld
[br:low ser],a
;txtrg=set
;wait async trans interrupt
asynctr01:
ld
a,[lod trans_flag]
;async trans interrpu flag
cp
a,#0ffh
jrs
nz,asynctr01
;
xor
a,a
ld
[lod trans_flag],a
;clear async trans interrupt flag
djr
nz,asynctr00
;until buffer end (256 bytes)
;
asynctr02:
ld
a,[br:low ser]
and
a,#00000100b
ld
[br:low ser],a
;txen=0 (dis.) async reset
and
[br:low pt_mode2],#00011100b
;timer 1 stop (baud rate)
carl
osc3toosc1
;change osc3 to osc1 ***
ret
(2) Receiving error interrupt
;************************************************************************
;*
*
;*
async 8-bit mode error interrupt processing routine
*
;*
*
;************************************************************************
asyncerr_intr:
push
ale
;
ld
br,#br_io
;set br reg. address to 0ffxxh
;
ld
a,[br:low ser]
and
a,#01110101b
(2)