FreeCalypso > hg > freecalypso-sw
view target-utils/libprintf/putchar.c @ 542:9dd6ca16f13d
gsm-fw/L1/cust0: split between IRAM and XIP code
author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
---|---|
date | Sun, 03 Aug 2014 04:59:30 +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); }