-
Notifications
You must be signed in to change notification settings - Fork 0
/
uart.a51
125 lines (101 loc) · 2.38 KB
/
uart.a51
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
UART_ISR:
push psw
push acc
setb RS0 ; Select Registerbank #1
jb ti, xmit
clr ri
mov a, sbuf
cjne byteCtr, #1, SOHkontrollieren
sjmp DatenEmpfangen ;Letztes Byte ohne SOH Kontrolle passieren
SOHkontrollieren:
cjne A, #soh, DatenEmpfangen
lcall PrepareDataReception ;Datenempfang vorbereiten
pop acc
pop psw
RETI
DatenEmpfangen:
djnz byteCtr, SaveData
mov @R0, A ;letztes Byte(Prüfsumme)
;Abschlussroutine
;Prüfsumme berechnen
mov R0, #inBuf+0
clr A
mov byteCtr, #inBufCount
AddNextByte:
add A, @R0
inc R0
djnz byteCtr, AddNextByte
jnz SendNAK
;Hier inBuf nach msgRam kopieren
mov byteCtr, #40
mov R0, #inBuf+0
mov R1, #msgRam+0
CopyNextToMsgRam:
clr c
mov A, @R0
subb A, #48
mov @R1, A
inc R0
inc R1
djnz byteCtr, CopyNextToMsgRam
;lcall Display
mov sendBuf+0, #ACK
sjmp SendAnswer
SendNAK:
mov sendBuf+0, #NAK
SendAnswer:
lcall GetSendBuf
setb ti
pop acc
pop psw
RETI
SaveData :
mov @R0, A
inc R0
pop acc
pop psw
RETI
;;;;;;;;;;;;;;;;;;;;,,
xmit:
clr ti
;djnz byteCtr, SendNextByte
;lcall PrepareDataReception
pop acc
pop psw
RETI
;xmit:
;clr ti
;djnz byteCtr, SendNextByte
;lcall PrepareDataReception
;pop acc
;pop psw
;RETI
SendNextByte:
mov sbuf, @R0
inc R0
pop acc
pop psw
RETI
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
GetSendBuf:
mov R0, #sendBuf+0
mov byteCtr, #2
RET
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
PrepareDataReception:
mov R0, #inBuf+0
mov byteCtr, #inBufCount
PrepareDataReception_1:
mov @R0, #0
inc R0
djnz byteCtr, PrepareDataReception_1
mov R0, #inBuf+0
mov byteCtr, #inBufCount
RET
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
init_uart_intr:
mov scon, #01010000b ;config serial port (ri and ti cleared)
mov RCAP2L, #0D9h ;(@9600bps AND @12MHZ RCAP2L=D9; @11MHZ RCAP2L=DC)
mov RCAP2H, #0FFh
mov T2CON, #34h
RET