From bc2a3c3de768ab184fed87a62ce368ccbb83564f Mon Sep 17 00:00:00 2001 From: rusefi Date: Mon, 4 Mar 2019 14:37:23 -0500 Subject: [PATCH] ETB quality instrumentation #494 set10K_4050K(ThermistorConf *thermistorConf) --- firmware/controllers/sensors/thermistors.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/firmware/controllers/sensors/thermistors.cpp b/firmware/controllers/sensors/thermistors.cpp index b6aaccd796..0886476317 100644 --- a/firmware/controllers/sensors/thermistors.cpp +++ b/firmware/controllers/sensors/thermistors.cpp @@ -227,6 +227,11 @@ void setCommonNTCSensor(ThermistorConf *thermistorConf) { setThermistorConfiguration(thermistorConf, -20, 18000, 23.8889, 2100, 120.0, 100.0); } +void set10K_4050K(ThermistorConf *thermistorConf) { + // see https://www.taydaelectronics.com/datasheets/A-409.pdf + setThermistorConfiguration(thermistorConf, -30, 108000, 25.0, 10000, 130.0, 225); +} + #if EFI_PROD_CODE || defined(__DOXYGEN__) static void testCltByR(float resistance) { if (logger == NULL) {