Log

Dependents:   oldheating gps motorhome heating

Committer:
andrewboyson
Date:
Mon Dec 12 15:44:51 2016 +0000
Revision:
0:9907e344c82a
Child:
3:7806ff3f1a2d
Added log library

Who changed what in which revision?

UserRevisionLine numberNew contents of line
andrewboyson 0:9907e344c82a 1 extern int LogInit(void);
andrewboyson 0:9907e344c82a 2 extern void LogV(char *fmt, va_list argptr);
andrewboyson 0:9907e344c82a 3 extern void LogF(char *fmt, ...);
andrewboyson 0:9907e344c82a 4 extern void LogCrLf(char *);
andrewboyson 0:9907e344c82a 5 extern void LogTime();
andrewboyson 0:9907e344c82a 6 extern void LogTimeF(char *fmt, ...);
andrewboyson 0:9907e344c82a 7 extern void LogTimeCrLf(char *);
andrewboyson 0:9907e344c82a 8 extern void LogSave(void);
andrewboyson 0:9907e344c82a 9 extern void LogPush(char c);
andrewboyson 0:9907e344c82a 10 extern void LogEnumerateStart(void);
andrewboyson 0:9907e344c82a 11 extern int LogEnumerate(void);
andrewboyson 0:9907e344c82a 12 extern void LogEnable(int on);