rusefi-1/firmware/controllers/core/engine_module.h

20 lines
550 B
C
Raw Normal View History

#pragma once
class EngineModule {
public:
2022-04-15 19:56:23 -07:00
// Called when 'Burn' is invoked
virtual void onConfigurationChange(engine_configuration_s const * /*previousConfig*/) { }
// Called approx 20Hz
virtual void onSlowCallback() { }
// Called approx 200Hz
virtual void onFastCallback() { }
// Called whenever the ignition switch state changes
virtual void onIgnitionStateChanged(bool /*ignitionOn*/) { }
// Queried to determine whether this module needs a delayed shutoff, defaults to false
virtual bool needsDelayedShutoff() { return false; }
};