view gsm-fw/lldbg/putchar.c @ 891:f3fba126778a

gsm-fw/comlib/cl_imei.c: implemented reading of Pirelli's factory IMEI record
author Space Falcon <falcon@ivan.Harhan.ORG>
date Mon, 29 Jun 2015 21:58:15 +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);
}