# HG changeset patch # User Matt Johnston # Date 1353336405 -28800 # Node ID 8375616bbc7b7ac16d15e614f50a9e3664926dd1 # Parent 4755e6f9a5b8f06af174c91bdfc05441ec492df2# Parent 9091411be8410a4f84b2c91ca0453d0f7083d978 merge diff -r 4755e6f9a5b8 -r 8375616bbc7b main.c --- a/main.c Mon Nov 19 22:46:34 2012 +0800 +++ b/main.c Mon Nov 19 22:46:45 2012 +0800 @@ -157,7 +157,6 @@ #define EXPECT_MAGIC 0x67c9 struct __attribute__ ((__packed__)) __eeprom_data { - uint16_t magic; uint16_t measure_wake; uint16_t comms_wake; uint8_t wake_secs; @@ -173,6 +172,8 @@ static uint8_t wort_id[ID_LEN]; static uint8_t fridge_id[ID_LEN]; #endif + + uint16_t magic; }; static const uint8_t fridge_id[ID_LEN] = @@ -676,9 +677,9 @@ return; } - uint8_t old = overshoot_delay; + uint8_t old = overshoot_factor; - overshoot_delay = new_f * 10; + overshoot_factor = new_f * 10; bool written = set_initial_eeprom(); if (!written) {