FreeCalypso > hg > freecalypso-sw
view target-utils/libprintf/putchar.c @ 98:b3ed63722eb5
fc-loadtool dump2srec: decorate the SREC output file with S0 and S7 records
author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
---|---|
date | Sun, 01 Sep 2013 17:20:58 +0000 |
parents | 40f607bb0a2c |
children |
line wrap: on
line source
extern void serial_out(); void putchar(ch) { if (ch == '\n') serial_out('\r'); serial_out(ch); }