FreeCalypso > hg > freecalypso-sw
view gsm-fw/lldbg/printf.c @ 887:7f305eb3c530
gsm-fw: tpudrv12.[ch] extended to support Pirelli DP-L10 target
Pirelli ramImage compiles, not tested on hw yet
compiled code unchanged in the gtamodem configuration (verified)
author | Space Falcon <falcon@ivan.Harhan.ORG> |
---|---|
date | Sun, 28 Jun 2015 08:15:10 +0000 |
parents | f5affe83ba2d |
children |
line wrap: on
line source
#include <stdarg.h> int lldbg_printf(char *fmt, ...) { va_list ap; int len; va_start(ap, fmt); len = lldbg_doprnt(fmt, ap); va_end(ap); return(len); }