# HG changeset patch # User Matt Johnston # Date 1351431510 -28800 # Node ID e6ec149d40631b9856407afcd5f9c7f16966d0b5 # Parent 2607e4f322cfe9d69d92b456733307dde87d6e47 - use the right variable for overshoot_factor - make eeprom more robust diff -r 2607e4f322cf -r e6ec149d4063 main.c --- a/main.c Sun Oct 28 07:52:35 2012 +0800 +++ b/main.c Sun Oct 28 21:38:30 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) {