Log

Dependents:   oldheating gps motorhome heating

Committer:
andrewboyson
Date:
Thu Jan 11 17:39:18 2018 +0000
Revision:
12:19c2d4943124
Parent:
11:aff6dd8238ef
Child:
13:fb7f40c2e446
Removed dependence on Mbed OS

Who changed what in which revision?

UserRevisionLine numberNew contents of line
andrewboyson 11:aff6dd8238ef 1 #include <stdarg.h>
andrewboyson 12:19c2d4943124 2 #include <time.h>
andrewboyson 12:19c2d4943124 3 #include <stdbool.h>
andrewboyson 11:aff6dd8238ef 4
andrewboyson 12:19c2d4943124 5 extern void (*LogTmFunction)(struct tm* ptm);
andrewboyson 12:19c2d4943124 6 extern void LogInit(void);
andrewboyson 12:19c2d4943124 7 extern void LogMain(void);
andrewboyson 7:417a6a65e942 8 extern bool LogUart;
andrewboyson 9:d2c41855ed09 9
andrewboyson 9:d2c41855ed09 10 extern void LogPush(char c);
andrewboyson 10:cf815db8ed57 11 extern int Log(char* snd);
andrewboyson 10:cf815db8ed57 12 extern int LogV(char *fmt, va_list argptr);
andrewboyson 10:cf815db8ed57 13 extern int LogF(char *fmt, ...);
andrewboyson 10:cf815db8ed57 14 extern int LogTime(char *snd);
andrewboyson 10:cf815db8ed57 15 extern int LogTimeF(char *fmt, ...);
andrewboyson 9:d2c41855ed09 16
andrewboyson 0:9907e344c82a 17 extern void LogEnumerateStart(void);
andrewboyson 0:9907e344c82a 18 extern int LogEnumerate(void);
andrewboyson 12:19c2d4943124 19 extern void LogEnable(bool value);