trigger refactoring
This commit is contained in:
parent
4f5aeea301
commit
59c293b548
|
@ -839,6 +839,6 @@ int getRusEfiVersion(void) {
|
|||
if (initBootloader() != 0)
|
||||
return 123;
|
||||
#endif /* EFI_BOOTLOADER_INCLUDE_CODE */
|
||||
return 201200122;
|
||||
return 201200125;
|
||||
}
|
||||
#endif /* EFI_UNIT_TEST */
|
||||
|
|
|
@ -737,11 +737,6 @@ void initTriggerDecoderLogger(Logging *sharedLogger) {
|
|||
logger = sharedLogger;
|
||||
}
|
||||
|
||||
void TriggerState::runtimeStatistics(efitick_t nowNt DECLARE_ENGINE_PARAMETER_SUFFIX) {
|
||||
UNUSED(nowNt);
|
||||
// empty base implementation
|
||||
}
|
||||
|
||||
void initTriggerDecoder(DECLARE_ENGINE_PARAMETER_SIGNATURE) {
|
||||
#if EFI_GPIO_HARDWARE
|
||||
enginePins.triggerDecoderErrorPin.initPin("trg_err", CONFIG(triggerErrorPin),
|
||||
|
|
|
@ -112,10 +112,6 @@ public:
|
|||
void resetTriggerState();
|
||||
void setShaftSynchronized(bool value);
|
||||
|
||||
#if EFI_ENGINE_CONTROL && EFI_SHAFT_POSITION_INPUT
|
||||
virtual void runtimeStatistics(efitick_t nowNt DECLARE_ENGINE_PARAMETER_SUFFIX);
|
||||
#endif
|
||||
|
||||
/**
|
||||
* this is start of real trigger cycle
|
||||
* for virtual double trigger see timeAtVirtualZeroNt
|
||||
|
@ -164,7 +160,7 @@ public:
|
|||
void movePreSynchTimestamps(DECLARE_ENGINE_PARAMETER_SIGNATURE);
|
||||
float calculateInstantRpm(int *prevIndex, efitick_t nowNt DECLARE_ENGINE_PARAMETER_SUFFIX);
|
||||
#if EFI_ENGINE_CONTROL && EFI_SHAFT_POSITION_INPUT
|
||||
void runtimeStatistics(efitick_t nowNt DECLARE_ENGINE_PARAMETER_SUFFIX) override;
|
||||
void runtimeStatistics(efitick_t nowNt DECLARE_ENGINE_PARAMETER_SUFFIX);
|
||||
#endif
|
||||
/**
|
||||
* Update timeOfLastEvent[] on every trigger event - even without synchronization
|
||||
|
|
Loading…
Reference in New Issue