Merge remote-tracking branch 'uniarch/master' into multiarch
[fw/altos] / src / core / 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   (HAS_USB + PACKET_HAS_SLAVE + USE_SERIAL_STDIN)
25
26 __xdata struct ao_stdio ao_stdios[AO_NUM_STDIOS];
27 __pdata int8_t ao_cur_stdio;
28 __pdata int8_t ao_num_stdios;
29
30 void
31 putchar(char c)
32 {
33         if (c == '\n')
34                 (*ao_stdios[ao_cur_stdio].putchar)('\r');
35         (*ao_stdios[ao_cur_stdio].putchar)(c);
36 }
37
38 void
39 flush(void)
40 {
41         if (ao_stdios[ao_cur_stdio].flush)
42                 ao_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 = ao_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 uint8_t
67 ao_echo(void)
68 {
69         return ao_stdios[ao_cur_stdio].echo;
70 }
71
72 int8_t
73 ao_add_stdio(char (*pollchar)(void),
74              void (*putchar)(char),
75              void (*flush)(void)) __reentrant
76 {
77         if (ao_num_stdios == AO_NUM_STDIOS)
78                 ao_panic(AO_PANIC_STDIO);
79         ao_stdios[ao_num_stdios].pollchar = pollchar;
80         ao_stdios[ao_num_stdios].putchar = putchar;
81         ao_stdios[ao_num_stdios].flush = flush;
82         ao_stdios[ao_num_stdios].echo = 1;
83         return ao_num_stdios++;
84 }