FreeCalypso > hg > freecalypso-sw
view gsm-fw/lldbg/putchar.c @ 1023:cd6002e3aefb
doc/Freerunner-Howto: apparently some people still use SHR, so mention it too
author | Mychaela Falconia <falcon@ivan.Harhan.ORG> |
---|---|
date | Tue, 03 May 2016 13:48:39 +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); }