auto-sync
This commit is contained in:
parent
76127f233d
commit
0d2e09cd62
|
@ -397,6 +397,7 @@ static void showFuelInfo2(float rpm, float engineLoad, Engine *engine) {
|
|||
engineConfiguration->globalFuelCorrection);
|
||||
|
||||
#if EFI_ENGINE_CONTROL
|
||||
scheduleMsg(&logger, "base cranking fuel %f", engineConfiguration->cranking.baseFuel);
|
||||
scheduleMsg(&logger2, "cranking fuel: %f", getCrankingFuel(engine));
|
||||
|
||||
if (engine->rpmCalculator.isRunning()) {
|
||||
|
|
|
@ -325,6 +325,7 @@ void setDefaultConfiguration(engine_configuration_s *engineConfiguration, board_
|
|||
engineConfiguration->hasMafSensor = true;
|
||||
engineConfiguration->hasTpsSensor = true;
|
||||
engineConfiguration->hasAfrSensor = true;
|
||||
engineConfiguration->hasIatSensor = true;
|
||||
engineConfiguration->hasCltSensor = true;
|
||||
engineConfiguration->hasBaroSensor = false;
|
||||
engineConfiguration->isDigitalChartEnabled = true;
|
||||
|
|
|
@ -351,16 +351,12 @@ static void printThermistor(const char *msg, Thermistor *thermistor) {
|
|||
float t = getTemperatureC(thermistor);
|
||||
|
||||
scheduleMsg(&logger, "%s v=%f C=%f R=%f on channel %d", msg, voltage, t, r, adcChannel);
|
||||
scheduleMsg(&logger, "bias=%f A=%f B=%f C=%f", thermistor->config->bias_resistor, thermistor->config->s_h_a,
|
||||
thermistor->config->s_h_b, thermistor->config->s_h_c);
|
||||
#if EFI_ANALOG_INPUTS
|
||||
scheduleMsg(&logger, "@%s", getPinNameByAdcChannel(adcChannel, pinNameBuffer));
|
||||
|
||||
float value = getResistance(thermistor);
|
||||
|
||||
scheduleMsg(&logger, "%s R=%f on channel %d@%s", msg, value, adcChannel,
|
||||
getPinNameByAdcChannel(adcChannel, pinNameBuffer));
|
||||
#endif
|
||||
scheduleMsg(&logger, "bias=%f A=%..100000f B=%..100000f C=%..100000f", thermistor->config->bias_resistor, thermistor->config->s_h_a,
|
||||
thermistor->config->s_h_b, thermistor->config->s_h_c);
|
||||
//#if EFI_ANALOG_INPUTS
|
||||
scheduleMsg(&logger, "==============================");
|
||||
//#endif
|
||||
}
|
||||
|
||||
#if EFI_PROD_CODE
|
||||
|
@ -417,10 +413,6 @@ static void printTemperatureInfo(void) {
|
|||
scheduleMsg(&logger, "A/C relay=%s @ %s", boolToString(enginePins.acRelay.getLogicValue()),
|
||||
hwPortname(boardConfiguration->acRelayPin));
|
||||
|
||||
|
||||
#if EFI_ANALOG_INPUTS
|
||||
scheduleMsg(&logger, "base cranking fuel %f", engineConfiguration->cranking.baseFuel);
|
||||
#endif /* EFI_ANALOG_INPUTS */
|
||||
#endif
|
||||
}
|
||||
|
||||
|
|
|
@ -278,5 +278,5 @@ int getRusEfiVersion(void) {
|
|||
return 1; // this is here to make the compiler happy about the unused array
|
||||
if (UNUSED_CCM_SIZE == 0)
|
||||
return 1; // this is here to make the compiler happy about the unused array
|
||||
return 20150217;
|
||||
return 20150218;
|
||||
}
|
||||
|
|
|
@ -0,0 +1,24 @@
|
|||
<component name="ProjectRunConfigurationManager">
|
||||
<configuration default="false" name="Launcher COM19" type="Application" factoryName="Application">
|
||||
<option name="MAIN_CLASS_NAME" value="com.rusefi.Launcher" />
|
||||
<option name="VM_PARAMETERS" value="" />
|
||||
<option name="PROGRAM_PARAMETERS" value="COM19" />
|
||||
<option name="WORKING_DIRECTORY" value="file://$PROJECT_DIR$" />
|
||||
<option name="ALTERNATIVE_JRE_PATH_ENABLED" value="false" />
|
||||
<option name="ALTERNATIVE_JRE_PATH" value="" />
|
||||
<option name="ENABLE_SWING_INSPECTOR" value="false" />
|
||||
<option name="ENV_VARIABLES" />
|
||||
<option name="PASS_PARENT_ENVS" value="true" />
|
||||
<module name="ui" />
|
||||
<envs />
|
||||
<RunnerSettings RunnerId="Debug">
|
||||
<option name="DEBUG_PORT" value="" />
|
||||
<option name="TRANSPORT" value="0" />
|
||||
<option name="LOCAL" value="true" />
|
||||
</RunnerSettings>
|
||||
<RunnerSettings RunnerId="Run" />
|
||||
<ConfigurationWrapper RunnerId="Debug" />
|
||||
<ConfigurationWrapper RunnerId="Run" />
|
||||
<method />
|
||||
</configuration>
|
||||
</component>
|
Loading…
Reference in New Issue