FreeCalypso > hg > freecalypso-tools
comparison target-utils/pirexplore/mygetchar.c @ 0:e7502631a0f9
initial import from freecalypso-sw rev 1033:5ab737ac3ad7
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sat, 11 Jun 2016 00:13:35 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:e7502631a0f9 |
---|---|
1 /* | |
2 * The interactive command entry (editing) function in libcommon | |
3 * will call mygetchar() for its character input. It is supposed | |
4 * to be a blocking wait for input, but in some programs other | |
5 * processing can be done while waiting - for example, check for | |
6 * keypad presses as well. This is the basic version which waits | |
7 * for serial input and nothing else. | |
8 */ | |
9 | |
10 extern int serial_in_poll(); | |
11 | |
12 int | |
13 mygetchar() | |
14 { | |
15 register int c; | |
16 | |
17 do | |
18 c = serial_in_poll(); | |
19 while (c < 0); | |
20 return c; | |
21 } |