FreeCalypso > hg > freecalypso-sw
view target-utils/libprintf/putchar.c @ 628:c2f2f7d78451
rvinterf: log sent GPF packets with the same decoding as received ones
author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
---|---|
date | Mon, 01 Sep 2014 07:42:59 +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); }