Log
Dependents: oldheating gps motorhome heating
log.h
- Committer:
- andrewboyson
- Date:
- 2018-01-11
- Revision:
- 12:19c2d4943124
- Parent:
- 11:aff6dd8238ef
- Child:
- 13:fb7f40c2e446
File content as of revision 12:19c2d4943124:
#include <stdarg.h> #include <time.h> #include <stdbool.h> extern void (*LogTmFunction)(struct tm* ptm); extern void LogInit(void); extern void LogMain(void); 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(bool value);