FreeCalypso > hg > freecalypso-tools
view target-utils/libprintf/putchar.c @ 375:759cb6dc501b
uptools/libcoding: added function for generating SMS PDUs with 8-bit text
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Thu, 08 Mar 2018 22:24:14 +0000 (2018-03-08) |
parents | e7502631a0f9 |
children |
line wrap: on
line source
extern void serial_out(); void putchar(ch) { if (ch == '\n') serial_out('\r'); serial_out(ch); }