From 7e974a83fc1f4830321a6d05549e8e7468a4e0c3 Mon Sep 17 00:00:00 2001 From: Fred Cooke Date: Mon, 26 May 2014 17:59:47 +1200 Subject: [PATCH] Increase the volume of fuel delivered during priming. Shift engine temperature enrichment down to the left for the hotel which has a wide normal operating range of 72 to 92. --- src/main/inc/constantsLibrary.h | 1 + src/main/initialisers/TunableConfig.c | 8 ++++++++ 2 files changed, 9 insertions(+) diff --git a/src/main/inc/constantsLibrary.h b/src/main/inc/constantsLibrary.h index f55c9c5..4455c84 100644 --- a/src/main/inc/constantsLibrary.h +++ b/src/main/inc/constantsLibrary.h @@ -140,6 +140,7 @@ // Temperature based small table default data #define ARRAY_OF_16_TEMPS { C(-30), C(-20), C(-10), C(0), C(10), C(20), C(30), C(40), C(50), C(60), C(70), C(80), C(90), C(100), C(110), C(120)} #define ARRAY_OF_16_PERCENTS { W(250), W(235), W(220), W(205), W(190), W(175), W(160), W(145), W(130), W(118), W(108), W(100), W(100), W(110), W(120), W(130)} +#define ARRAY_OF_16_PERCENTS_WIDE { W(235), W(220), W(205), W(190), W(175), W(160), W(145), W(130), W(118), W(108), W(100), W(100), W(100), W(110), W(120), W(130)} #define ARRAY_OF_16_VOLUMES {T(6.40), T(5.06), T(4.09), T(3.74), T(3.48), T(3.23), T(3.06), T(2.86), T(2.71), T(2.53), T(2.41), T(2.29), T(2.18), T(1.67), T(1.25), T(0.88)} // Time in ms, for now, NOT volume, yet // RPM based small table default data diff --git a/src/main/initialisers/TunableConfig.c b/src/main/initialisers/TunableConfig.c index b23b976..8b3d51b 100644 --- a/src/main/initialisers/TunableConfig.c +++ b/src/main/initialisers/TunableConfig.c @@ -115,14 +115,22 @@ const volatile SmallTables1 SmallTablesAFlashV TUNETABLESDV1 = { #if CONFIG == DEUCES10_ID Axis: ARRAY_OF_16_TEMPS, Values: {T(14.00), T(13.00), T(12.00), T(11.00), T(10.00), T(10.00), T(9.00), T(9.00), T(8.00), T(8.00), T(7.00), T(7.00), T(6.50), T(6.00), T(6.00), T(5.00)} +#elif CONFIG == HOTEL_ID + Axis: ARRAY_OF_16_TEMPS, + Values: {T(52.42), T(52.42), T(52.42), T(50.00), T(30.00), T(18.00), T(11.00), T(9.00), T(8.00), T(7.00), T(6.00), T(5.00), T(5.00), T(5.00), T(5.00), T(5.00)} #else Axis: ARRAY_OF_16_TEMPS, Values: ARRAY_OF_16_VOLUMES #endif }, engineTempEnrichmentTablePercent: { +#if CONFIG == HOTEL_ID + Axis: ARRAY_OF_16_TEMPS, + Values: ARRAY_OF_16_PERCENTS_WIDE +#else Axis: ARRAY_OF_16_TEMPS, Values: ARRAY_OF_16_PERCENTS +#endif }, dwellVersusRPMTable: { Axis: ARRAY_OF_16_RPMS, -- 2.11.4.GIT