FreeCalypso > hg > freecalypso-sw
view gsm-fw/lldbg/getchar.c @ 876:c9f353b5d70c
rvinterf/asyncshell/rxctl.c: buglet in the implementation of dis/enable commands
author | Space Falcon <falcon@ivan.Harhan.ORG> |
---|---|
date | Sat, 30 May 2015 07:50:05 +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; }