FreeCalypso > hg > freecalypso-sw
view gsm-fw/lldbg/putchar.c @ 875:dab341e172de
fc-shell: sysprim sending (sp command) implemented
author | Space Falcon <falcon@ivan.Harhan.ORG> |
---|---|
date | Sat, 30 May 2015 07:41:23 +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); }