Monitor for central heating system (e.g. 2zones+hw) Supports up to 15 temp probes (DS18B20/DS18S20) 3 valve monitors Gas pulse meter recording Use stand-alone or with nodeEnergyServer See http://robdobson.com/2015/09/central-heating-monitor

Dependencies:   EthernetInterfacePlusHostname NTPClient Onewire RdWebServer SDFileSystem-RTOS mbed-rtos mbed-src

Revision:
19:0367cb46d003
Parent:
12:a52996515063
--- a/Watchdog.h	Mon Sep 28 11:16:46 2015 +0000
+++ b/Watchdog.h	Mon Oct 05 14:05:33 2015 +0000
@@ -20,8 +20,10 @@
         // by writing this required bit pattern
         void Feed() 
         {
+            __disable_irq();
             LPC_WDT->WDFEED = 0xAA;
             LPC_WDT->WDFEED = 0x55;
+            __enable_irq();
         }
         
         bool WatchdogCausedRestart()