From e25a94c78bb52c0d08b77fe8e208f2a67b321961 Mon Sep 17 00:00:00 2001 From: rusefi Date: Tue, 7 Mar 2017 01:37:07 -0500 Subject: [PATCH] #348 --- firmware/controllers/algo/fuel_math.cpp | 2 +- firmware/controllers/lcd_controller.h | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/firmware/controllers/algo/fuel_math.cpp b/firmware/controllers/algo/fuel_math.cpp index 4ff784f61c..2667da434c 100644 --- a/firmware/controllers/algo/fuel_math.cpp +++ b/firmware/controllers/algo/fuel_math.cpp @@ -5,7 +5,7 @@ * While engine running, fuel amount is an interpolated value from the fuel map by getRpm() and getEngineLoad() * On top of the value from the fuel map we also apply *
1) getInjectorLag() correction to account for fuel injector lag - *
2) getCltCorrection() for warm-up + *
2) getCltFuelCorrection() for warm-up *
3) getIatCorrection() to account for cold weather * * getCrankingFuel() depents only on getCoolantTemperature() diff --git a/firmware/controllers/lcd_controller.h b/firmware/controllers/lcd_controller.h index 6f64609150..ba414538c7 100644 --- a/firmware/controllers/lcd_controller.h +++ b/firmware/controllers/lcd_controller.h @@ -12,8 +12,6 @@ #define MAX_LCD_WIDTH 20 -#define TOTAL_OPTIONS 6 - void initLcdController(void); void updateHD44780lcd(Engine *engine);