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:
Thu Jan 11 17:40:08 2018 +0000
Revision:
0:3c04f4b47041
Removed dependence on Mbed OS

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