Log

Dependents:   oldheating gps motorhome heating

log.h

Committer:
andrewboyson
Date:
2017-12-16
Revision:
11:aff6dd8238ef
Parent:
10:cf815db8ed57
Child:
12:19c2d4943124

File content as of revision 11:aff6dd8238ef:

#include <stdarg.h>

extern int  LogInit();
extern bool LogUart;

extern void LogPush(char c);
extern int  Log(char* snd);
extern int  LogV(char *fmt, va_list argptr);
extern int  LogF(char *fmt, ...);
extern int  LogTime(char *snd);
extern int  LogTimeF(char *fmt, ...);

extern void LogEnumerateStart(void);
extern int  LogEnumerate(void);
extern void LogEnable(int on);