FreeCalypso > hg > freecalypso-sw
view gsm-fw/lldbg/putchar.c @ 910:d1333db6385f
rvinterf/etmsync refactoring: operation functions consolidated in fileio.c
author | Space Falcon <falcon@ivan.Harhan.ORG> |
---|---|
date | Tue, 08 Sep 2015 06:34:02 +0000 |
parents | f5affe83ba2d |
children |
line wrap: on
line source
extern void lldbg_serial_out(); void lldbg_putchar(ch) { if (ch == '\n') lldbg_serial_out('\r'); lldbg_serial_out(ch); }