FreeCalypso > hg > freecalypso-sw
view gsm-fw/lldbg/getchar.c @ 1031:6312f684cef1
gsm-fw feature tch-reroute: byte order changed to big endian
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Tue, 31 May 2016 18:50:32 +0000 |
parents | f5affe83ba2d |
children |
line wrap: on
line source
extern int lldbg_serial_in_poll(); int lldbg_getchar() { register int c; do c = lldbg_serial_in_poll(); while (c < 0); return c; }