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:
Tue Feb 23 20:35:07 2021 +0000
Revision:
105:1899f7ed17ec
Parent:
0:3c04f4b47041
Added ability to set the minimum flow rate and removed the correction to delta T relative to speed. Adding the round circuit time and linked to speed. Next task is to linearize the flow.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
andrewboyson 0:3c04f4b47041 1 #include <stdbool.h>
andrewboyson 0:3c04f4b47041 2
andrewboyson 0:3c04f4b47041 3 extern bool FramEmpty;
andrewboyson 0:3c04f4b47041 4 extern int FramUsed;
andrewboyson 0:3c04f4b47041 5 extern int FramInit(void);
andrewboyson 0:3c04f4b47041 6 extern int FramAllocate(int size);
andrewboyson 0:3c04f4b47041 7 extern void FramWrite(int address, int len, void* pVoid);
andrewboyson 0:3c04f4b47041 8 extern void FramRead (int address, int len, void* pVoid);
andrewboyson 0:3c04f4b47041 9 extern int FramLoad (int len, void* pValue, void* pDefault);
andrewboyson 0:3c04f4b47041 10
andrewboyson 0:3c04f4b47041 11 #define FRAM_SIZE 8192