altosui: Prevent voice altitude data from queueing up
[fw/altos] / src / ao_stdio.c
1 /*
2  * Copyright © 2009 Keith Packard <keithp@keithp.com>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; version 2 of the License.
7  *
8  * This program is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11  * General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License along
14  * with this program; if not, write to the Free Software Foundation, Inc.,
15  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
16  */
17
18 #include "ao.h"
19
20 /*
21  * Basic I/O functions to support SDCC stdio package
22  */
23
24 #define AO_NUM_STDIOS   2
25
26 static __xdata struct ao_stdio stdios[AO_NUM_STDIOS];
27 static __data int8_t ao_cur_stdio;
28 static __data int8_t ao_num_stdios;
29
30 void
31 putchar(char c)
32 {
33         if (c == '\n')
34                 (*stdios[ao_cur_stdio].putchar)('\r');
35         (*stdios[ao_cur_stdio].putchar)(c);
36 }
37
38 void
39 flush(void)
40 {
41         if (stdios[ao_cur_stdio].flush)
42                 stdios[ao_cur_stdio].flush();
43 }
44
45 __xdata uint8_t ao_stdin_ready;
46
47 char
48 getchar(void) __reentrant __critical
49 {
50         char c;
51         int8_t stdio = ao_cur_stdio;
52
53         for (;;) {
54                 c = stdios[stdio].pollchar();
55                 if (c != AO_READ_AGAIN)
56                         break;
57                 if (++stdio == ao_num_stdios)
58                         stdio = 0;
59                 if (stdio == ao_cur_stdio)
60                         ao_sleep(&ao_stdin_ready);
61         }
62         ao_cur_stdio = stdio;
63         return c;
64 }
65
66 void
67 ao_add_stdio(char (*pollchar)(void),
68              void (*putchar)(char),
69              void (*flush)(void))
70 {
71         if (ao_num_stdios == AO_NUM_STDIOS)
72                 ao_panic(AO_PANIC_STDIO);
73         stdios[ao_num_stdios].pollchar = pollchar;
74         stdios[ao_num_stdios].putchar = putchar;
75         stdios[ao_num_stdios].flush = flush;
76         ao_num_stdios++;
77 }