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
Child:
8:8b5e0bb28da0
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 void SetClockSlewDivisor (int value);
andrewboyson 0:3c04f4b47041 4 extern void SetClockSlewMaxMs (int value);
andrewboyson 0:3c04f4b47041 5 extern void SetClockPpbDivisor (int value);
andrewboyson 0:3c04f4b47041 6 extern void SetClockPpbChangeMax (int value);
andrewboyson 0:3c04f4b47041 7 extern void SetClockSyncedLimitNs (int value);
andrewboyson 0:3c04f4b47041 8 extern void SetClockSyncedLimitPpb (int value);
andrewboyson 0:3c04f4b47041 9 extern void SetClockSyncedHysterisNs (int value);
andrewboyson 0:3c04f4b47041 10 extern void SetClockSyncedHysterisPpb(int value);
andrewboyson 0:3c04f4b47041 11 extern void SetClockMaxOffsetSecs (int value);
andrewboyson 0:3c04f4b47041 12 extern void SetNetPreferIp4Polled (bool value);
andrewboyson 0:3c04f4b47041 13
andrewboyson 0:3c04f4b47041 14 extern int SettingsInit(void);