From b854dfdb0b5a34407028674681448af373b61b3c Mon Sep 17 00:00:00 2001 From: Josh Stewart Date: Tue, 20 May 2014 15:30:22 +1000 Subject: [PATCH] Fix offset error in storage map --- storage.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/storage.h b/storage.h index 38fc1614..98dfab7e 100644 --- a/storage.h +++ b/storage.h @@ -22,9 +22,9 @@ Current layout of EEPROM data (Version 2) is as follows (All sizes are in bytes) | 205 |8 | Ign Table MAP/TPS bins | | 213 |45 | Remaining Page 2 settings | | 258 |12 | Calibration data (CLT) | -| 260 |12 | Calibration data (IAT) | -| 272 |12 | Calibration data (O2) | -| 284 |28 | Calibration data (Reserved) | +| 270 |12 | Calibration data (IAT) | +| 282 |12 | Calibration data (O2) | +| 294 |28 | Calibration data (Reserved) | ----------------------------------------------------- */ @@ -45,6 +45,6 @@ Current layout of EEPROM data (Version 2) is as follows (All sizes are in bytes) #define EEPROM_CONFIG_END 258 #define EEPROM_CALIBRATION_CLT 258 -#define EEPROM_CALIBRATION_IAT 260 -#define EEPROM_CALIBRATION_O2 272 +#define EEPROM_CALIBRATION_IAT 270 +#define EEPROM_CALIBRATION_O2 282