auto-sync

This commit is contained in:
rusEfi 2015-04-19 14:04:42 -04:00
parent e313a54fea
commit da3e02338d
2 changed files with 3 additions and 3 deletions

View File

@ -356,7 +356,7 @@ void setDefaultConfiguration(DECLARE_ENGINE_PARAMETER_F) {
engineConfiguration->cylinderBore = 87.5;
initEgoSensor(&engineConfiguration->afr, ES_BPSX_D1);
initEgoSensor(&engineConfiguration->afr, ES_14Point7_Free);
engineConfiguration->globalFuelCorrection = 1;

View File

@ -35,9 +35,9 @@ void initEgoSensor(afr_sensor_s *sensor, ego_sensor_e type) {
break;
case ES_14Point7_Free:
sensor->v1 = 0;
sensor->value1 = 10;
sensor->value1 = 9.996;
sensor->v2 = 5;
sensor->value2 = 20;
sensor->value2 = 19.992;
break;
default:
firmwareError("Unexpected EGO %d", type);