diff --git a/firmware/controllers/settings.cpp b/firmware/controllers/settings.cpp index 65053f8140..812355cf92 100644 --- a/firmware/controllers/settings.cpp +++ b/firmware/controllers/settings.cpp @@ -376,6 +376,11 @@ static void printThermistor(const char *msg, Thermistor *thermistor) { scheduleMsg(&logger, "%s volts=%f Celsius=%f sensorR=%f on channel %d", msg, voltage, t, r, adcChannel); scheduleMsg(&logger, "@%s", getPinNameByAdcChannel(adcChannel, pinNameBuffer)); + scheduleMsg(&logger, "C=%f/R=%f C=%f/R=%f C=%f/R=%f", + thermistor->config->tempC_1, thermistor->config->resistance_1, + thermistor->config->tempC_2, thermistor->config->resistance_2, + thermistor->config->tempC_3, thermistor->config->resistance_3); + scheduleMsg(&logger, "bias resistor=%fK A=%..100000f B=%..100000f C=%..100000f", thermistor->config->bias_resistor / 1000, thermistor->config->s_h_a, thermistor->config->s_h_b, thermistor->config->s_h_c); scheduleMsg(&logger, "=============================="); diff --git a/firmware/rusefi.cpp b/firmware/rusefi.cpp index 37096d2310..af304ffb8d 100644 --- a/firmware/rusefi.cpp +++ b/firmware/rusefi.cpp @@ -291,5 +291,5 @@ int getRusEfiVersion(void) { return 123; // this is here to make the compiler happy about the unused array if (UNUSED_CCM_SIZE[0] * 0 != 0) return 3211; // this is here to make the compiler happy about the unused array - return 20150520; + return 20150521; }