changeset 435:c95737913174

fix wrong eeprom tpes
author Matt Johnston <matt@ucc.asn.au>
date Mon, 22 Oct 2012 21:08:11 +0800
parents 411ff85e16e3
children 8841a709ae78
files main.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/main.c	Sun Oct 14 21:52:09 2012 +0800
+++ b/main.c	Mon Oct 22 21:08:11 2012 +0800
@@ -86,7 +86,7 @@
 static uint8_t wake_secs = 30;
 // decidegrees
 static int16_t fridge_setpoint = 180; // 18.0ºC
-static int16_t fridge_difference = 3; // 0.3ºC
+static uint16_t fridge_difference = 3; // 0.3ºC
 static uint16_t fridge_delay = 600; // seconds
 
 // ---- Atomic guards required accessing these variables
@@ -162,7 +162,7 @@
     uint8_t wake_secs;
 
     int16_t fridge_setpoint; // decidegrees
-    uint8_t fridge_difference; // decidegrees
+    uint16_t fridge_difference; // decidegrees
     uint16_t fridge_delay;
 
 #if 0