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

fram/fram.h

Committer:
andrewboyson
Date:
2021-02-23
Revision:
105:1899f7ed17ec
Parent:
0:3c04f4b47041

File content as of revision 105:1899f7ed17ec:

#include <stdbool.h>

extern bool FramEmpty;
extern int  FramUsed;
extern int  FramInit(void);
extern int  FramAllocate(int size);
extern void FramWrite(int address, int len, void* pVoid);
extern void FramRead (int address, int len, void* pVoid);
extern int  FramLoad (int len, void* pValue, void* pDefault);

#define FRAM_SIZE   8192