Central Heating controller using the real time clock, PHY module for internet, 1-wire interface for temperature sensors, a system log and a configuration file

Dependencies:   net 1-wire lpc1768 crypto clock web fram log

/media/uploads/andrewboyson/heating.sch

/media/uploads/andrewboyson/heating.brd

/media/uploads/andrewboyson/eagle.epf

Committer:
andrewboyson
Date:
Fri Apr 23 08:36:42 2021 +0000
Revision:
106:41ed3ea0bbba
Parent:
48:6eac12df3ad5
Not working, crashes.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
andrewboyson 0:3c04f4b47041 1 #include <stdint.h>
andrewboyson 0:3c04f4b47041 2 #include <time.h>
andrewboyson 0:3c04f4b47041 3 #include <stdbool.h>
andrewboyson 0:3c04f4b47041 4
andrewboyson 0:3c04f4b47041 5 extern bool ValuesTrace;
andrewboyson 0:3c04f4b47041 6
andrewboyson 0:3c04f4b47041 7 extern char* ValuesGetServerName (void);
andrewboyson 0:3c04f4b47041 8 extern char* ValuesGetFileName (void);
andrewboyson 0:3c04f4b47041 9 extern int ValuesGetWriteSize (void);
andrewboyson 0:3c04f4b47041 10 extern int ValuesGetReadInterval (void);
andrewboyson 48:6eac12df3ad5 11 extern void ValuesGetStartTm (struct tm* ptm);
andrewboyson 48:6eac12df3ad5 12 extern int64_t ValuesGetStartTime (void);
andrewboyson 0:3c04f4b47041 13 extern int ValuesGetCount (void);
andrewboyson 0:3c04f4b47041 14 extern void ValuesSetServerName (char* value);
andrewboyson 0:3c04f4b47041 15 extern void ValuesSetFileName (char* value);
andrewboyson 0:3c04f4b47041 16 extern void ValuesSetWriteSize (int value);
andrewboyson 0:3c04f4b47041 17 extern void ValuesSetReadInterval (int value);
andrewboyson 0:3c04f4b47041 18
andrewboyson 0:3c04f4b47041 19 extern void ValuesMain(void);
andrewboyson 0:3c04f4b47041 20 extern int ValuesInit(void);