[EPIC] [Feature Request] Transmission Control #1454
This commit is contained in:
parent
3ea21ba4bf
commit
442d829f8a
|
@ -68,6 +68,7 @@ void setDefaultBaseEngine() {
|
||||||
|
|
||||||
|
|
||||||
engineConfiguration->tcuInputSpeedSensorTeeth = 1;
|
engineConfiguration->tcuInputSpeedSensorTeeth = 1;
|
||||||
|
engineConfiguration->issFilterReciprocal = 2;
|
||||||
|
|
||||||
// Check engine light
|
// Check engine light
|
||||||
#if EFI_PROD_CODE
|
#if EFI_PROD_CODE
|
||||||
|
|
|
@ -4,6 +4,6 @@
|
||||||
class InputShaftSpeedConverter : public SensorConverter {
|
class InputShaftSpeedConverter : public SensorConverter {
|
||||||
public:
|
public:
|
||||||
SensorResult convert(float frequency) const override {
|
SensorResult convert(float frequency) const override {
|
||||||
return frequency * 60 / engineConfiguration->vssToothCount;
|
return frequency * 60 / engineConfiguration->tcuInputSpeedSensorTeeth;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue