-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathASYIO.C
243 lines (187 loc) · 4.88 KB
/
ASYIO.C
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
#include <stdio.h>
#include <dos.h>
#include <stdarg.h>
#include <alloc.h>
#include <mem.h>
#include "async.h"
extern int UART_ports[];
extern struct async_portS async_port[NUMBEROFPORTS];
int async_putch_timeout(int comport, char c, long timeout)
{
long to;
to = timeout;
while (async_port[comport].txbuflength>=TXBUFSIZE) {
if (timeout) {
to--;
delay(1);
if (to == 0) {
return(0);
}
}
}
async_port[comport].txbuf[async_port[comport].txhead] = c;
async_port[comport].txhead++;
async_port[comport].txbuflength++;
if (async_port[comport].txhead == TXBUFSIZE) {
async_port[comport].txhead = 0;
}
async_tx_enable(comport, 1);
return (1);
}
void async_putch(int comport, char c)
{
async_putch_timeout(comport, c, 0L);
}
void async_puts(int comport, char *s)
{
while (*s) {
async_putch(comport, *s++);
}
}
void async_printf(int comport, char *fmt, ...)
{
va_list argptr;
char *buf;
buf = malloc(512); // Should this be on the stack or
// is this a good way to do it?
va_start(argptr, fmt);
vsprintf(buf, fmt, argptr);
va_end(argptr);
async_puts(comport, buf);
free(buf);
}
int async_putblock_timeout(int comport, const char *block, int size, long timeout)
{
long to;
while (size--) {
to = timeout;
// Wait for room in the TX buffer
while (async_port[comport].txbuflength>=TXBUFSIZE) {
//test async_tx_enable(comport, 1);
if (timeout) {
to--;
delay(1);
if (to == 0) {
return(0);
}
}
}
// Go ahead and put next character from block into TX buffer
async_port[comport].txbuf[async_port[comport].txhead] = *block++;
// Increment buffer pointers
async_port[comport].txhead++;
async_port[comport].txbuflength++;
if (async_port[comport].txhead == TXBUFSIZE) {
async_port[comport].txhead = 0;
}
}
async_tx_enable(comport, 1);
return (1);
}
void async_putblock(int comport, const char *block, int size)
{
async_putblock_timeout(comport, block, size, 0L);
}
int async_ready(int comport)
{
async_check_flowcontrol(comport);
if (async_port[comport].rxbuflength) {
return (1);
} else {
return (0);
}
}
int async_rx(int comport)
{
int c;
if (async_port[comport].rxbuflength) {
c = async_port[comport].rxbuf[async_port[comport].rxtail];
async_port[comport].rxtail++;
async_port[comport].rxbuflength--;
if (async_port[comport].rxtail == RXBUFSIZE) {
async_port[comport].rxtail = 0;
}
if (async_port[comport].handshaking) {
async_check_flowcontrol(comport);
}
return(c);
}
return (0);
}
char async_getch(int comport)
{
char c;
c = async_rx(comport);
return (c);
}
int async_gets(int comport, char *s, int size)
{
int snatched = 0;
int done = 0;
if (!size) {
return (0);
}
memset(s, 0, size);
while ((async_ready(comport)) && (!done)) {
s[snatched] = async_rx(comport);
if ((s[snatched] == 0x0D) || (s[snatched] == 0x0A)) {
done = 1;
} else
if (snatched == size) {
done = 1;
}
snatched ++;
}
return (snatched);
}
int async_getblock_timeout(int comport, char *block, int size, long timeout)
{
int snatched = 0;
long to = timeout;
int done = 0;
while ((size) && (!done)) {
do {
if (timeout) {
delay(1);
if (!to) {
done = 1;
return (snatched);
}
to--;
}
} while (!async_ready(comport));
block[snatched] = async_rx(comport);
snatched++;
}
return (snatched);
}
int async_getblock(int comport, char *block, int size)
{
int snatched = 0;
snatched = async_getblock_timeout(comport, block, size, 0L);
return (snatched);
}
char async_peek(int comport)
{
char c;
if (async_port[comport].rxhead != async_port[comport].rxtail) {
c = async_port[comport].rxbuf[async_port[comport].rxtail];
return (c);
}
return (0);
}
void async_flushrx(int comport)
{
async_port[comport].rxhead = 0;
async_port[comport].rxtail = 0;
async_port[comport].rxbuflength = 0;
if (async_port[comport].handshaking) {
async_check_flowcontrol(comport);
}
}
void async_flushtx(int comport)
{
async_port[comport].txhead = 0;
async_port[comport].txtail = 0;
async_port[comport].txbuflength = 0;
}