From bac97cb24ed5c1b36835ef1600bbd1556d55a1a1 Mon Sep 17 00:00:00 2001 From: rusEfi Date: Fri, 16 Dec 2016 19:02:14 -0500 Subject: [PATCH] auto-sync --- firmware/config/engines/bmw_e34.cpp | 2 -- firmware/controllers/sensors/thermistors.cpp | 5 +++++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/firmware/config/engines/bmw_e34.cpp b/firmware/config/engines/bmw_e34.cpp index 8ecaf09d1d..e637396ad0 100644 --- a/firmware/config/engines/bmw_e34.cpp +++ b/firmware/config/engines/bmw_e34.cpp @@ -150,8 +150,6 @@ void setBmwE34(DECLARE_ENGINE_PARAMETER_F) { engineConfiguration->map.sensor.type = MT_MPX4250; // thermistors - engineConfiguration->hasCltSensor = true; - engineConfiguration->hasIatSensor = true; setThermistorConfiguration(&engineConfiguration->clt, -10, 9300, 20, 2500, 80, 335); engineConfiguration->iat.config.bias_resistor = 2200; setThermistorConfiguration(&engineConfiguration->iat, -10, 9300, 20, 2500, 80, 335); diff --git a/firmware/controllers/sensors/thermistors.cpp b/firmware/controllers/sensors/thermistors.cpp index 773cf4f43a..7e8805561e 100644 --- a/firmware/controllers/sensors/thermistors.cpp +++ b/firmware/controllers/sensors/thermistors.cpp @@ -17,8 +17,10 @@ #include "engine_math.h" // Celsius +#define NO_IAT_SENSOR_TEMPERATURE 32.0f #define LIMPING_MODE_IAT_TEMPERATURE 30.0f #define LIMPING_MODE_CLT_TEMPERATURE 70.0f +#define NO_CLT_SENSOR_TEMPERATURE 72.0f EXTERN_ENGINE ; @@ -174,6 +176,9 @@ static void prepareThermistorCurve(thermistor_conf_s *tc, thermistor_curve_s * c * @return Celsius value */ float getIntakeAirTemperature(DECLARE_ENGINE_PARAMETER_F) { + if (engineConfiguration->iat.adcChannel == EFI_ADC_NONE) { + return NO_IAT_SENSOR_TEMPERATURE; + } float temperature = getTemperatureC(&engineConfiguration->iat, &engine->engineState.iatCurve); if (!isValidIntakeAirTemperature(temperature)) { efiAssert(engineConfiguration!=NULL, "NULL engineConfiguration", NAN);