only: cylinderBankSelect is zero-based index
This commit is contained in:
parent
865d9634e2
commit
810e254f93
|
@ -37,6 +37,7 @@ void setGDIFueling() {
|
||||||
/* Cylinder to bank mapping */
|
/* Cylinder to bank mapping */
|
||||||
void setLeftRightBanksNeedBetterName() {
|
void setLeftRightBanksNeedBetterName() {
|
||||||
for (size_t i = 0; i < engineConfiguration->cylindersCount; i++) {
|
for (size_t i = 0; i < engineConfiguration->cylindersCount; i++) {
|
||||||
|
// zero-based index
|
||||||
engineConfiguration->cylinderBankSelect[i] = i % 2;
|
engineConfiguration->cylinderBankSelect[i] = i % 2;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -66,7 +67,8 @@ void setDefaultBaseEngine() {
|
||||||
|
|
||||||
for (size_t i = 0; i < engineConfiguration->cylindersCount; i++) {
|
for (size_t i = 0; i < engineConfiguration->cylindersCount; i++) {
|
||||||
// one knock sensor by default. See also 'setLeftRightBanksNeedBetterName()'
|
// one knock sensor by default. See also 'setLeftRightBanksNeedBetterName()'
|
||||||
engineConfiguration->cylinderBankSelect[i] = 1;
|
// zero-based index
|
||||||
|
engineConfiguration->cylinderBankSelect[i] = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
engineConfiguration->compressionRatio = 9;
|
engineConfiguration->compressionRatio = 9;
|
||||||
|
|
Loading…
Reference in New Issue