auto-sync

This commit is contained in:
rusEfi 2015-05-21 12:04:48 -04:00
parent 36e0c6e1e3
commit fa5e542c37
2 changed files with 6 additions and 1 deletions

View File

@ -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, "==============================");

View File

@ -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;
}