const, explicit, and override (#831)

* const, explicit, and override

* more const

* more const

* missed a spot
This commit is contained in:
Matthew Kennedy 2019-06-08 06:51:36 -07:00 committed by rusefi
parent 061e7c6bf0
commit 95003e9a7b
45 changed files with 116 additions and 121 deletions

View File

@ -137,7 +137,7 @@ floatms_t WallFuel::adjust(int injectorIndex, floatms_t M_des DECLARE_ENGINE_PAR
return M_cmd; return M_cmd;
} }
floatms_t WallFuel::getWallFuel(int injectorIndex) { floatms_t WallFuel::getWallFuel(int injectorIndex) const {
return wallFuel[injectorIndex]; return wallFuel[injectorIndex];
} }

View File

@ -65,7 +65,7 @@ public:
* @return total adjusted fuel squirt duration once wall wetting is taken into effect * @return total adjusted fuel squirt duration once wall wetting is taken into effect
*/ */
floatms_t adjust(int injectorIndex, floatms_t target DECLARE_ENGINE_PARAMETER_SUFFIX); floatms_t adjust(int injectorIndex, floatms_t target DECLARE_ENGINE_PARAMETER_SUFFIX);
floatms_t getWallFuel(int injectorIndex); floatms_t getWallFuel(int injectorIndex) const;
void reset(); void reset();
private: private:
/** /**

View File

@ -165,7 +165,7 @@ Engine::Engine(persistent_config_s *config) {
* @see scheduleStopEngine() * @see scheduleStopEngine()
* @return true if there is a reason to stop engine * @return true if there is a reason to stop engine
*/ */
bool Engine::needToStopEngine(efitick_t nowNt) { bool Engine::needToStopEngine(efitick_t nowNt) const {
return stopEngineRequestTimeNt != 0 && return stopEngineRequestTimeNt != 0 &&
nowNt - stopEngineRequestTimeNt < 3 * US2NT(US_PER_SECOND_LL); nowNt - stopEngineRequestTimeNt < 3 * US2NT(US_PER_SECOND_LL);
} }
@ -307,7 +307,7 @@ void Engine::checkShutdown() {
#endif /* EFI_MAIN_RELAY_CONTROL */ #endif /* EFI_MAIN_RELAY_CONTROL */
} }
bool Engine::isInShutdownMode() { bool Engine::isInShutdownMode() const {
#if EFI_MAIN_RELAY_CONTROL #if EFI_MAIN_RELAY_CONTROL
if (stopEngineRequestTimeNt == 0) // the shutdown procedure is not started if (stopEngineRequestTimeNt == 0) // the shutdown procedure is not started
return false; return false;

View File

@ -68,7 +68,7 @@ class RpmCalculator;
class Engine { class Engine {
public: public:
Engine(persistent_config_s *config); explicit Engine(persistent_config_s *config);
Engine(); Engine();
void setConfig(persistent_config_s *config); void setConfig(persistent_config_s *config);
injection_mode_e getCurrentInjectionMode(DECLARE_ENGINE_PARAMETER_SIGNATURE); injection_mode_e getCurrentInjectionMode(DECLARE_ENGINE_PARAMETER_SIGNATURE);
@ -112,7 +112,7 @@ public:
#endif /* EFI_ENGINE_CONTROL */ #endif /* EFI_ENGINE_CONTROL */
WallFuel wallFuel; WallFuel wallFuel;
bool needToStopEngine(efitick_t nowNt); bool needToStopEngine(efitick_t nowNt) const;
bool etbAutoTune = false; bool etbAutoTune = false;
/** /**
* That's the list of pending spark firing events * That's the list of pending spark firing events
@ -308,7 +308,7 @@ public:
* Allows to finish some long-term shutdown procedures (stepper motor parking etc.) * Allows to finish some long-term shutdown procedures (stepper motor parking etc.)
Returns true if some operations are in progress on background. Returns true if some operations are in progress on background.
*/ */
bool isInShutdownMode(); bool isInShutdownMode() const;
monitoring_timestamps_s m; monitoring_timestamps_s m;

View File

@ -62,7 +62,7 @@ public:
class MenuTree { class MenuTree {
public: public:
MenuTree(MenuItem *root); explicit MenuTree(MenuItem *root);
void nextItem(void); void nextItem(void);
void back(void); void back(void);
void enterSubMenu(void); void enterSubMenu(void);

View File

@ -21,7 +21,7 @@ void SingleWave::init(pin_state_t *pinStates) {
this->pinStates = pinStates; this->pinStates = pinStates;
} }
pin_state_t SingleWave::getState(int switchIndex) { pin_state_t SingleWave::getState(int switchIndex) const {
pin_state_t state = pinStates[switchIndex]; pin_state_t state = pinStates[switchIndex];
efiAssert(OBD_PCM_Processor_Fault, state == 0 || state == 1, "wave state get", TV_FALL); efiAssert(OBD_PCM_Processor_Fault, state == 0 || state == 1, "wave state get", TV_FALL);
return state; return state;

View File

@ -42,13 +42,13 @@ typedef trigger_value_e pin_state_t;
class SingleWave { class SingleWave {
public: public:
SingleWave(); SingleWave();
SingleWave(pin_state_t *pinStates); explicit SingleWave(pin_state_t *pinStates);
void init(pin_state_t *pinStates); void init(pin_state_t *pinStates);
/** /**
* todo: confirm that we only deal with two states here, no magic '-1'? * todo: confirm that we only deal with two states here, no magic '-1'?
* @return HIGH or LOW state at given index * @return HIGH or LOW state at given index
*/ */
pin_state_t getState(int switchIndex); pin_state_t getState(int switchIndex) const;
void setState(int switchIndex, pin_state_t state); void setState(int switchIndex, pin_state_t state);
// todo: make this private by using 'getState' and 'setState' methods // todo: make this private by using 'getState' and 'setState' methods

View File

@ -302,7 +302,7 @@ float LECalculator::getValue2(float selfValue, LEElement *fistElementInList DECL
return getValue(selfValue PASS_ENGINE_PARAMETER_SUFFIX); return getValue(selfValue PASS_ENGINE_PARAMETER_SUFFIX);
} }
bool LECalculator::isEmpty() { bool LECalculator::isEmpty() const {
return first == NULL; return first == NULL;
} }
@ -348,7 +348,7 @@ void LEElementPool::reset() {
index = 0; index = 0;
} }
int LEElementPool::getSize() { int LEElementPool::getSize() const {
return index; return index;
} }

View File

@ -84,7 +84,7 @@ public:
LEElement *next(); LEElement *next();
void reset(); void reset();
LEElement * parseExpression(const char * line); LEElement * parseExpression(const char * line);
int getSize(); int getSize() const;
private: private:
int index; int index;
int size; int size;
@ -103,7 +103,7 @@ public:
float getValue(float selfValue DECLARE_ENGINE_PARAMETER_SUFFIX); float getValue(float selfValue DECLARE_ENGINE_PARAMETER_SUFFIX);
float getValue2(float selfValue, LEElement *fistElementInList DECLARE_ENGINE_PARAMETER_SUFFIX); float getValue2(float selfValue, LEElement *fistElementInList DECLARE_ENGINE_PARAMETER_SUFFIX);
void add(LEElement *element); void add(LEElement *element);
bool isEmpty(); bool isEmpty() const;
void reset(); void reset();
void reset(LEElement *element); void reset(LEElement *element);
le_action_e calcLogAction[MAX_CALC_LOG]; le_action_e calcLogAction[MAX_CALC_LOG];

View File

@ -784,17 +784,17 @@ bool PID_AutoTune::Runtime(Logging *logger)
return true; return true;
} }
float PID_AutoTune::GetKp() float PID_AutoTune::GetKp() const
{ {
return Kp; return Kp;
} }
float PID_AutoTune::GetKi() float PID_AutoTune::GetKi() const
{ {
return Kp / Ti; return Kp / Ti;
} }
float PID_AutoTune::GetKd() float PID_AutoTune::GetKd() const
{ {
return Kp * Td; return Kp * Td;
} }
@ -814,7 +814,7 @@ void PID_AutoTune::SetOutputStep(double Step)
oStep = Step; oStep = Step;
} }
double PID_AutoTune::GetOutputStep() double PID_AutoTune::GetOutputStep() const
{ {
return oStep; return oStep;
} }
@ -824,7 +824,7 @@ void PID_AutoTune::SetControlType(byte type)
controlType = type; controlType = type;
} }
byte PID_AutoTune::GetControlType() byte PID_AutoTune::GetControlType() const
{ {
return controlType; return controlType;
} }

View File

@ -59,12 +59,12 @@ struct Tuning
{ {
byte _divisor[3]; byte _divisor[3];
bool PI_controller() bool PI_controller() const
{ {
return _divisor[2] == 0; return _divisor[2] == 0;
} }
double divisor(byte index) double divisor(byte index) const
{ {
return (double)(_divisor[index] * 0.05); return (double)(_divisor[index] * 0.05);
} }
@ -113,21 +113,21 @@ public:
void SetOutputStep(double); // * how far above and below the starting value will void SetOutputStep(double); // * how far above and below the starting value will
// the output step? // the output step?
double GetOutputStep(); // double GetOutputStep() const; //
void SetControlType(byte); // * Determines tuning algorithm void SetControlType(byte); // * Determines tuning algorithm
byte GetControlType(); // * Returns tuning algorithm byte GetControlType() const; // * Returns tuning algorithm
void SetLookbackSec(int); // * how far back are we looking to identify peaks void SetLookbackSec(int); // * how far back are we looking to identify peaks
int GetLookbackSec(); // int GetLookbackSec() const; //
void SetNoiseBand(double); // * the autotune will ignore signal chatter smaller void SetNoiseBand(double); // * the autotune will ignore signal chatter smaller
// than this value // than this value
double GetNoiseBand(); // this should be accurately set double GetNoiseBand(); // this should be accurately set
float GetKp(); // * once autotune is complete, these functions contain the float GetKp() const; // * once autotune is complete, these functions contain the
float GetKi(); // computed tuning parameters. float GetKi() const; // computed tuning parameters.
float GetKd(); // float GetKd() const; //
Logging *logger; Logging *logger;
byte peakCount; byte peakCount;

View File

@ -88,7 +88,7 @@ bool EventQueue::insertTask(scheduling_s *scheduling, efitime_t timeX, schfunc_t
* This method is always invoked under a lock * This method is always invoked under a lock
* @return Get the timestamp of the soonest pending action, skipping all the actions in the past * @return Get the timestamp of the soonest pending action, skipping all the actions in the past
*/ */
efitime_t EventQueue::getNextEventTime(efitime_t nowX) { efitime_t EventQueue::getNextEventTime(efitime_t nowX) const {
if (head != NULL) { if (head != NULL) {
if (head->momentX <= nowX) { if (head->momentX <= nowX) {
@ -185,7 +185,7 @@ int EventQueue::executeAll(efitime_t now) {
return executionCounter; return executionCounter;
} }
int EventQueue::size(void) { int EventQueue::size(void) const {
scheduling_s *tmp; scheduling_s *tmp;
int result; int result;
LL_COUNT(head, tmp, result); LL_COUNT(head, tmp, result);
@ -193,7 +193,7 @@ int EventQueue::size(void) {
} }
#if EFI_UNIT_TEST #if EFI_UNIT_TEST
void EventQueue::assertListIsSorted() { void EventQueue::assertListIsSorted() const {
scheduling_s *current = head; scheduling_s *current = head;
while (current != NULL && current->next != NULL) { while (current != NULL && current->next != NULL) {
efiAssertVoid(CUSTOM_ERR_6623, current->momentX <= current->next->momentX, "list order"); efiAssertVoid(CUSTOM_ERR_6623, current->momentX <= current->next->momentX, "list order");

View File

@ -56,13 +56,13 @@ public:
int executeAll(efitime_t now); int executeAll(efitime_t now);
efitime_t getNextEventTime(efitime_t nowUs); efitime_t getNextEventTime(efitime_t nowUs) const;
void clear(void); void clear(void);
int size(void); int size(void) const;
scheduling_s *getForUnitText(int index); scheduling_s *getForUnitText(int index);
void setLateDelay(int value); void setLateDelay(int value);
scheduling_s * getHead(); scheduling_s * getHead();
void assertListIsSorted(); void assertListIsSorted() const;
private: private:
bool checkIfPending(scheduling_s *scheduling); bool checkIfPending(scheduling_s *scheduling);
/** /**

View File

@ -113,7 +113,7 @@ private:
class SimplePwm : public PwmConfig { class SimplePwm : public PwmConfig {
public: public:
SimplePwm(); SimplePwm();
SimplePwm(const char *name); explicit SimplePwm(const char *name);
void setSimplePwmDutyCycle(float dutyCycle); void setSimplePwmDutyCycle(float dutyCycle);
pin_state_t pinStates[2]; pin_state_t pinStates[2];
SingleWave sr[1]; SingleWave sr[1];

View File

@ -12,8 +12,8 @@
class SleepExecutor : public ExecutorInterface { class SleepExecutor : public ExecutorInterface {
public: public:
void scheduleByTimestamp(scheduling_s *scheduling, efitimeus_t timeUs, schfunc_t callback, void *param); void scheduleByTimestamp(scheduling_s *scheduling, efitimeus_t timeUs, schfunc_t callback, void *param) override;
void scheduleForLater(scheduling_s *scheduling, int delayUs, schfunc_t callback, void *param); void scheduleForLater(scheduling_s *scheduling, int delayUs, schfunc_t callback, void *param) override;
}; };
#endif /* SIGNAL_EXECUTOR_SLEEP_H_ */ #endif /* SIGNAL_EXECUTOR_SLEEP_H_ */

View File

@ -15,11 +15,11 @@ TwoPinDcMotor::TwoPinDcMotor(SimplePwm* enable, SimplePwm* dir1, SimplePwm* dir2
{ {
} }
bool TwoPinDcMotor::isOpenDirection() { bool TwoPinDcMotor::isOpenDirection() const {
return m_value >= 0; return m_value >= 0;
} }
float TwoPinDcMotor::Get() { float TwoPinDcMotor::Get() const {
return m_value; return m_value;
} }

View File

@ -60,8 +60,8 @@ public:
TwoPinDcMotor(SimplePwm* enable, SimplePwm* dir1, SimplePwm* dir2); TwoPinDcMotor(SimplePwm* enable, SimplePwm* dir1, SimplePwm* dir2);
virtual bool Set(float duty) override; virtual bool Set(float duty) override;
float Get(); float Get() const;
bool isOpenDirection(); bool isOpenDirection() const;
void SetType(ControlType type) { m_type = type; } void SetType(ControlType type) { m_type = type; }
}; };

View File

@ -218,11 +218,11 @@ NamedOutputPin::NamedOutputPin() : OutputPin() {
name = NULL; name = NULL;
} }
const char *NamedOutputPin::getName() { const char *NamedOutputPin::getName() const {
return name; return name;
} }
const char *NamedOutputPin::getShortName() { const char *NamedOutputPin::getShortName() const {
return shortName == NULL ? name : shortName; return shortName == NULL ? name : shortName;
} }
@ -347,7 +347,7 @@ void OutputPin::setValue(int logicValue) {
#endif /* EFI_PROD_CODE */ #endif /* EFI_PROD_CODE */
} }
bool OutputPin::getLogicValue() { bool OutputPin::getLogicValue() const {
return currentLogicValue; return currentLogicValue;
} }

View File

@ -45,7 +45,7 @@ public:
void setValue(int logicValue); void setValue(int logicValue);
void toggle(); void toggle();
bool getLogicValue(); bool getLogicValue() const;
#if EFI_GPIO_HARDWARE #if EFI_GPIO_HARDWARE
@ -74,11 +74,11 @@ private:
class NamedOutputPin : public OutputPin { class NamedOutputPin : public OutputPin {
public: public:
NamedOutputPin(); NamedOutputPin();
NamedOutputPin(const char *name); explicit NamedOutputPin(const char *name);
void setHigh(); void setHigh();
void setLow(); void setLow();
const char *getName(); const char *getName() const;
const char *getShortName(); const char *getShortName() const;
/** /**
* @return true if pin was stopped * @return true if pin was stopped
*/ */

View File

@ -98,7 +98,7 @@ int TriggerShape::getSize() const {
return privateTriggerDefinitionSize; return privateTriggerDefinitionSize;
} }
int TriggerShape::getTriggerShapeSynchPointIndex() { int TriggerShape::getTriggerShapeSynchPointIndex() const {
return triggerShapeSynchPointIndex; return triggerShapeSynchPointIndex;
} }
@ -154,7 +154,7 @@ void TriggerShape::addEventClamped(angle_t angle, trigger_wheel_e const channelI
addEvent(angle / getEngineCycle(operationMode), channelIndex, stateParam); addEvent(angle / getEngineCycle(operationMode), channelIndex, stateParam);
} }
operation_mode_e TriggerShape::getOperationMode() { operation_mode_e TriggerShape::getOperationMode() const {
return operationMode; return operationMode;
} }
@ -311,7 +311,7 @@ void TriggerShape::setTriggerSynchronizationGap3(int gapIndex, float syncRatioFr
/** /**
* this method is only used on initialization * this method is only used on initialization
*/ */
int TriggerShape::findAngleIndex(float target) { int TriggerShape::findAngleIndex(float target) const {
int engineCycleEventCount = getLength(); int engineCycleEventCount = getLength();
efiAssert(CUSTOM_ERR_ASSERT, engineCycleEventCount > 0, "engineCycleEventCount", 0); efiAssert(CUSTOM_ERR_ASSERT, engineCycleEventCount > 0, "engineCycleEventCount", 0);

View File

@ -221,7 +221,7 @@ public:
* Deprecated? * Deprecated?
*/ */
void addEventClamped(angle_t angle, trigger_wheel_e const channelIndex, trigger_value_e const stateParam, float filterLeft, float filterRight); void addEventClamped(angle_t angle, trigger_wheel_e const channelIndex, trigger_value_e const stateParam, float filterLeft, float filterRight);
operation_mode_e getOperationMode(); operation_mode_e getOperationMode() const;
void initialize(operation_mode_e operationMode, bool needSecondTriggerInput); void initialize(operation_mode_e operationMode, bool needSecondTriggerInput);
void setTriggerSynchronizationGap(float syncRatio); void setTriggerSynchronizationGap(float syncRatio);
@ -236,7 +236,7 @@ public:
uint32_t getLength() const; uint32_t getLength() const;
int getSize() const; int getSize() const;
int getTriggerShapeSynchPointIndex(); int getTriggerShapeSynchPointIndex() const;
void prepareShape(); void prepareShape();
/** /**
@ -253,7 +253,7 @@ public:
private: private:
trigger_shape_helper h; trigger_shape_helper h;
int findAngleIndex(float angle); int findAngleIndex(float angle) const;
/** /**
* Working buffer for 'wave' instance * Working buffer for 'wave' instance

View File

@ -38,7 +38,7 @@ extern WaveChart waveChart;
#define NO_RPM_EVENTS_TIMEOUT_SECS 2 #define NO_RPM_EVENTS_TIMEOUT_SECS 2
#endif /* NO_RPM_EVENTS_TIMEOUT_SECS */ #endif /* NO_RPM_EVENTS_TIMEOUT_SECS */
float RpmCalculator::getRpmAcceleration() { float RpmCalculator::getRpmAcceleration() const {
return 1.0 * previousRpmValue / rpmValue; return 1.0 * previousRpmValue / rpmValue;
} }
@ -56,7 +56,7 @@ bool RpmCalculator::isSpinningUp(DECLARE_ENGINE_PARAMETER_SIGNATURE) const {
return state == SPINNING_UP; return state == SPINNING_UP;
} }
uint32_t RpmCalculator::getRevolutionCounterSinceStart(void) { uint32_t RpmCalculator::getRevolutionCounterSinceStart(void) const {
return revolutionCounterSinceStart; return revolutionCounterSinceStart;
} }
@ -181,7 +181,7 @@ void RpmCalculator::onNewEngineCycle() {
#endif /* EFI_UNIT_TEST */ #endif /* EFI_UNIT_TEST */
} }
uint32_t RpmCalculator::getRevolutionCounter(void) { uint32_t RpmCalculator::getRevolutionCounter(void) const {
return revolutionCounterSinceBoot; return revolutionCounterSinceBoot;
} }

View File

@ -102,19 +102,19 @@ public:
* This method is invoked once per engine cycle right after we calculate new RPM value * This method is invoked once per engine cycle right after we calculate new RPM value
*/ */
void onNewEngineCycle(); void onNewEngineCycle();
uint32_t getRevolutionCounter(void); uint32_t getRevolutionCounter(void) const;
void setRpmValue(int value DECLARE_ENGINE_PARAMETER_SUFFIX); void setRpmValue(int value DECLARE_ENGINE_PARAMETER_SUFFIX);
/** /**
* The same as setRpmValue() but without state change. * The same as setRpmValue() but without state change.
* We need this to be public because of calling rpmState->assignRpmValue() from rpmShaftPositionCallback() * We need this to be public because of calling rpmState->assignRpmValue() from rpmShaftPositionCallback()
*/ */
void assignRpmValue(int value DECLARE_ENGINE_PARAMETER_SUFFIX); void assignRpmValue(int value DECLARE_ENGINE_PARAMETER_SUFFIX);
uint32_t getRevolutionCounterSinceStart(void); uint32_t getRevolutionCounterSinceStart(void) const;
/** /**
* RPM rate of change between current RPM and RPM measured during previous engine cycle * RPM rate of change between current RPM and RPM measured during previous engine cycle
* see also SC_RPM_ACCEL * see also SC_RPM_ACCEL
*/ */
float getRpmAcceleration(); float getRpmAcceleration() const;
/** /**
* This is public because sometimes we cannot afford to call isRunning() and the value is good enough * This is public because sometimes we cannot afford to call isRunning() and the value is good enough
* Zero if engine is not running * Zero if engine is not running

View File

@ -39,7 +39,7 @@ void TriggerCentral::resetAccumSignalData() {
memset(accumSignalPrevPeriods, 0, sizeof(accumSignalPrevPeriods)); memset(accumSignalPrevPeriods, 0, sizeof(accumSignalPrevPeriods));
} }
int TriggerCentral::getHwEventCounter(int index) { int TriggerCentral::getHwEventCounter(int index) const {
return hwEventCounters[index]; return hwEventCounters[index];
} }

View File

@ -29,7 +29,7 @@ public:
TriggerCentral(); TriggerCentral();
void addEventListener(ShaftPositionListener handler, const char *name, Engine *engine); void addEventListener(ShaftPositionListener handler, const char *name, Engine *engine);
void handleShaftSignal(trigger_event_e signal DECLARE_ENGINE_PARAMETER_SUFFIX); void handleShaftSignal(trigger_event_e signal DECLARE_ENGINE_PARAMETER_SUFFIX);
int getHwEventCounter(int index); int getHwEventCounter(int index) const;
void resetCounters(); void resetCounters();
void resetAccumSignalData(); void resetAccumSignalData();
bool noiseFilter(efitick_t nowNt, trigger_event_e signal DECLARE_ENGINE_PARAMETER_SUFFIX); bool noiseFilter(efitick_t nowNt, trigger_event_e signal DECLARE_ENGINE_PARAMETER_SUFFIX);

View File

@ -248,7 +248,7 @@ void TriggerStateWithRunningStatistics::runtimeStatistics(efitime_t nowNt DECLAR
} }
} }
bool TriggerState::isValidIndex(DECLARE_ENGINE_PARAMETER_SIGNATURE) { bool TriggerState::isValidIndex(DECLARE_ENGINE_PARAMETER_SIGNATURE) const {
return currentCycle.current_index < getTriggerSize(); return currentCycle.current_index < getTriggerSize();
} }
@ -699,10 +699,6 @@ void initTriggerDecoderLogger(Logging *sharedLogger) {
logger = sharedLogger; logger = sharedLogger;
} }
efitime_t TriggerState::getStartOfRevolutionIndex() const {
return totalEventCountBase;
}
void TriggerState::runtimeStatistics(efitime_t nowNt DECLARE_ENGINE_PARAMETER_SUFFIX) { void TriggerState::runtimeStatistics(efitime_t nowNt DECLARE_ENGINE_PARAMETER_SUFFIX) {
UNUSED(nowNt); UNUSED(nowNt);
// empty base implementation // empty base implementation

View File

@ -59,7 +59,6 @@ public:
void validateCamVvtCounters(); void validateCamVvtCounters();
void incrementTotalEventCounter(); void incrementTotalEventCounter();
efitime_t getTotalEventCounter() const; efitime_t getTotalEventCounter() const;
efitime_t getStartOfRevolutionIndex() const;
void decodeTriggerEvent(trigger_event_e const signal, efitime_t nowUs DECLARE_ENGINE_PARAMETER_SUFFIX); void decodeTriggerEvent(trigger_event_e const signal, efitime_t nowUs DECLARE_ENGINE_PARAMETER_SUFFIX);
bool validateEventCounters(DECLARE_ENGINE_PARAMETER_SIGNATURE) const; bool validateEventCounters(DECLARE_ENGINE_PARAMETER_SIGNATURE) const;
void handleTriggerError(DECLARE_ENGINE_PARAMETER_SIGNATURE); void handleTriggerError(DECLARE_ENGINE_PARAMETER_SIGNATURE);
@ -69,7 +68,7 @@ public:
*/ */
void onSynchronizationLost(DECLARE_ENGINE_PARAMETER_SIGNATURE); void onSynchronizationLost(DECLARE_ENGINE_PARAMETER_SIGNATURE);
bool isValidIndex(DECLARE_ENGINE_PARAMETER_SIGNATURE); bool isValidIndex(DECLARE_ENGINE_PARAMETER_SIGNATURE) const;
float getTriggerDutyCycle(int index); float getTriggerDutyCycle(int index);
TriggerStateCallback triggerCycleCallback; TriggerStateCallback triggerCycleCallback;
@ -151,7 +150,7 @@ public:
void movePreSynchTimestamps(DECLARE_ENGINE_PARAMETER_SIGNATURE); void movePreSynchTimestamps(DECLARE_ENGINE_PARAMETER_SIGNATURE);
float calculateInstantRpm(int *prevIndex, efitime_t nowNt DECLARE_ENGINE_PARAMETER_SUFFIX); float calculateInstantRpm(int *prevIndex, efitime_t nowNt DECLARE_ENGINE_PARAMETER_SUFFIX);
#if EFI_ENGINE_CONTROL && EFI_SHAFT_POSITION_INPUT #if EFI_ENGINE_CONTROL && EFI_SHAFT_POSITION_INPUT
virtual void runtimeStatistics(efitime_t nowNt DECLARE_ENGINE_PARAMETER_SUFFIX); void runtimeStatistics(efitime_t nowNt DECLARE_ENGINE_PARAMETER_SUFFIX) override;
#endif #endif
/** /**
* Update timeOfLastEvent[] on every trigger event - even without synchronization * Update timeOfLastEvent[] on every trigger event - even without synchronization

View File

@ -105,7 +105,7 @@ void WaveChart::startDataCollection() {
collectingData = true; collectingData = true;
} }
bool WaveChart::isStartedTooLongAgo() { bool WaveChart::isStartedTooLongAgo() const {
/** /**
* Say at 300rpm we should get at least four events per revolution. * Say at 300rpm we should get at least four events per revolution.
* That's 300/60*4=20 events per second * That's 300/60*4=20 events per second
@ -116,7 +116,7 @@ bool WaveChart::isStartedTooLongAgo() {
return startTimeNt != 0 && NT2US(chartDurationNt) > engineConfiguration->engineChartSize * 1000000 / 20; return startTimeNt != 0 && NT2US(chartDurationNt) > engineConfiguration->engineChartSize * 1000000 / 20;
} }
bool WaveChart::isFull() { bool WaveChart::isFull() const {
return counter >= CONFIG(engineChartSize); return counter >= CONFIG(engineChartSize);
} }

View File

@ -26,8 +26,8 @@ public:
void startDataCollection(); void startDataCollection();
void publishIfFull(); void publishIfFull();
void publish(); void publish();
bool isFull(); bool isFull() const;
bool isStartedTooLongAgo(); bool isStartedTooLongAgo() const;
private: private:
Logging logging; Logging logging;
char timeBuffer[10]; char timeBuffer[10];

View File

@ -11,21 +11,21 @@
class AdcDevice { class AdcDevice {
public: public:
AdcDevice(ADCConversionGroup* hwConfig); explicit AdcDevice(ADCConversionGroup* hwConfig);
void enableChannel(adc_channel_e hwChannelIndex); void enableChannel(adc_channel_e hwChannelIndex);
void enableChannelAndPin(adc_channel_e hwChannelIndex); void enableChannelAndPin(adc_channel_e hwChannelIndex);
adc_channel_e getAdcHardwareIndexByInternalIndex(int index); adc_channel_e getAdcHardwareIndexByInternalIndex(int index) const;
int internalAdcIndexByHardwareIndex[20]; int internalAdcIndexByHardwareIndex[20];
bool isHwUsed(adc_channel_e hwChannel); bool isHwUsed(adc_channel_e hwChannel) const;
int size(); int size() const;
void init(void); void init(void);
int conversionCount; int conversionCount;
int errorsCount; int errorsCount;
int getAdcValueByIndex(int internalIndex); int getAdcValueByIndex(int internalIndex) const;
adcsample_t samples[ADC_MAX_CHANNELS_COUNT * MAX_ADC_GRP_BUF_DEPTH]; adcsample_t samples[ADC_MAX_CHANNELS_COUNT * MAX_ADC_GRP_BUF_DEPTH];
int getAdcValueByHwChannel(int hwChannel); int getAdcValueByHwChannel(int hwChannel) const;
adc_state values; adc_state values;
int channelCount; int channelCount;

View File

@ -329,16 +329,16 @@ static void initAdcHwChannel(adc_channel_e hwChannel) {
initAdcPin(pin, "hw"); initAdcPin(pin, "hw");
} }
int AdcDevice::size() { int AdcDevice::size() const {
return channelCount; return channelCount;
} }
int AdcDevice::getAdcValueByHwChannel(int hwChannel) { int AdcDevice::getAdcValueByHwChannel(int hwChannel) const {
int internalIndex = internalAdcIndexByHardwareIndex[hwChannel]; int internalIndex = internalAdcIndexByHardwareIndex[hwChannel];
return values.adc_data[internalIndex]; return values.adc_data[internalIndex];
} }
int AdcDevice::getAdcValueByIndex(int internalIndex) { int AdcDevice::getAdcValueByIndex(int internalIndex) const {
return values.adc_data[internalIndex]; return values.adc_data[internalIndex];
} }
@ -347,7 +347,7 @@ void AdcDevice::init(void) {
hwConfig->sqr1 += ADC_SQR1_NUM_CH(size()); hwConfig->sqr1 += ADC_SQR1_NUM_CH(size());
} }
bool AdcDevice::isHwUsed(adc_channel_e hwChannelIndex) { bool AdcDevice::isHwUsed(adc_channel_e hwChannelIndex) const {
for (int i = 0; i < channelCount; i++) { for (int i = 0; i < channelCount; i++) {
if (hardwareIndexByIndernalAdcIndex[i] == hwChannelIndex) { if (hardwareIndexByIndernalAdcIndex[i] == hwChannelIndex) {
return true; return true;
@ -383,7 +383,7 @@ static void printAdcValue(int channel) {
scheduleMsg(&logger, "adc voltage : %.2f", volts); scheduleMsg(&logger, "adc voltage : %.2f", volts);
} }
adc_channel_e AdcDevice::getAdcHardwareIndexByInternalIndex(int index) { adc_channel_e AdcDevice::getAdcHardwareIndexByInternalIndex(int index) const {
return hardwareIndexByIndernalAdcIndex[index]; return hardwareIndexByIndernalAdcIndex[index];
} }

View File

@ -59,9 +59,9 @@ extern EnginePins enginePins;
uint32_t hipLastExecutionCount; uint32_t hipLastExecutionCount;
class Hip9011Hardware: public Hip9011HardwareInterface { class Hip9011Hardware : public Hip9011HardwareInterface {
void sendSyncCommand(unsigned char command); void sendSyncCommand(unsigned char command) override;
void sendCommand(unsigned char command); void sendCommand(unsigned char command) override;
}; };
static Hip9011Hardware hardware; static Hip9011Hardware hardware;

View File

@ -57,7 +57,7 @@ public:
class HIP9011 { class HIP9011 {
public: public:
HIP9011(Hip9011HardwareInterface *hardware); explicit HIP9011(Hip9011HardwareInterface *hardware);
void prepareHip9011RpmLookup(float angleWindowWidth); void prepareHip9011RpmLookup(float angleWindowWidth);
int getIntegrationIndexByRpm(float rpm); int getIntegrationIndexByRpm(float rpm);
void setStateAndCommand(unsigned char cmd); void setStateAndCommand(unsigned char cmd);

View File

@ -34,7 +34,7 @@ void CJ125::SetIdleHeater(DECLARE_ENGINE_PARAMETER_SIGNATURE) {
SetHeater(CJ125_HEATER_IDLE_RATE PASS_ENGINE_PARAMETER_SUFFIX); SetHeater(CJ125_HEATER_IDLE_RATE PASS_ENGINE_PARAMETER_SUFFIX);
} }
bool CJ125::isWorkingState(void) { bool CJ125::isWorkingState(void) const {
return state != CJ125_ERROR && state != CJ125_INIT && state != CJ125_IDLE; return state != CJ125_ERROR && state != CJ125_INIT && state != CJ125_IDLE;
} }
@ -95,7 +95,7 @@ void CJ125::cjSetMode(cj125_mode_e m) {
mode = m; mode = m;
} }
bool CJ125::isValidState() { bool CJ125::isValidState() const {
// check if controller is functioning // check if controller is functioning
if (!isWorkingState()) if (!isWorkingState())
return false; return false;

View File

@ -93,13 +93,13 @@ public:
volatile cj125_error_e errorCode = CJ125_ERROR_NONE; volatile cj125_error_e errorCode = CJ125_ERROR_NONE;
void setError(cj125_error_e errCode DECLARE_ENGINE_PARAMETER_SUFFIX); void setError(cj125_error_e errCode DECLARE_ENGINE_PARAMETER_SUFFIX);
bool isWorkingState(void); bool isWorkingState(void) const;
void SetHeater(float value DECLARE_ENGINE_PARAMETER_SUFFIX); void SetHeater(float value DECLARE_ENGINE_PARAMETER_SUFFIX);
void SetIdleHeater(DECLARE_ENGINE_PARAMETER_SIGNATURE); void SetIdleHeater(DECLARE_ENGINE_PARAMETER_SIGNATURE);
void StartHeaterControl(pwm_gen_callback *stateChangeCallback DECLARE_ENGINE_PARAMETER_SUFFIX); void StartHeaterControl(pwm_gen_callback *stateChangeCallback DECLARE_ENGINE_PARAMETER_SUFFIX);
void cjIdentify(void); void cjIdentify(void);
void cjSetMode(cj125_mode_e m); void cjSetMode(cj125_mode_e m);
bool isValidState(); bool isValidState() const;
void cjInitPid(DECLARE_ENGINE_PARAMETER_SIGNATURE); void cjInitPid(DECLARE_ENGINE_PARAMETER_SIGNATURE);
}; };

View File

@ -128,7 +128,7 @@ StepperMotor::StepperMotor() {
totalSteps = 0; totalSteps = 0;
} }
int StepperMotor::getTargetPosition() { int StepperMotor::getTargetPosition() const {
return targetPosition; return targetPosition;
} }

View File

@ -18,7 +18,7 @@ public:
brain_pin_e enablePin, pin_output_mode_e enablePinMode, Logging *sharedLogger); brain_pin_e enablePin, pin_output_mode_e enablePinMode, Logging *sharedLogger);
void pulse(); void pulse();
void setTargetPosition(int targetPosition); void setTargetPosition(int targetPosition);
int getTargetPosition(); int getTargetPosition() const;
void setDirection(bool isIncrementing); void setDirection(bool isIncrementing);
OutputPin directionPin; OutputPin directionPin;

View File

@ -25,7 +25,7 @@ class cyclic_buffer
{ {
public: public:
cyclic_buffer(); cyclic_buffer();
cyclic_buffer(int size); explicit cyclic_buffer(int size);
//cpctor //cpctor
cyclic_buffer(const cyclic_buffer& cb); cyclic_buffer(const cyclic_buffer& cb);
//dtor //dtor

View File

@ -27,7 +27,7 @@ public:
void clear(); void clear();
void registerCallback(VoidInt handler, void *arg); void registerCallback(VoidInt handler, void *arg);
void registerCallback(Void listener); void registerCallback(Void listener);
void invokeJustArgCallbacks(); void invokeJustArgCallbacks() const;
int currentListenersCount; int currentListenersCount;
VoidInt callbacks[MAX_INT_LISTENER_COUNT]; VoidInt callbacks[MAX_INT_LISTENER_COUNT];
void * args[MAX_INT_LISTENER_COUNT]; void * args[MAX_INT_LISTENER_COUNT];
@ -83,7 +83,7 @@ void invokeCallbacks(IntListenerArray<MAX_INT_LISTENER_COUNT> *array, int value)
} }
template<int MAX_INT_LISTENER_COUNT> template<int MAX_INT_LISTENER_COUNT>
void IntListenerArray<MAX_INT_LISTENER_COUNT>::invokeJustArgCallbacks() { void IntListenerArray<MAX_INT_LISTENER_COUNT>::invokeJustArgCallbacks() const {
for (int i = 0; i < currentListenersCount; i++) { for (int i = 0; i < currentListenersCount; i++) {
VoidPtr listener = (VoidPtr)(void*)callbacks[i]; VoidPtr listener = (VoidPtr)(void*)callbacks[i];
void *arg = args[i]; void *arg = args[i];

View File

@ -21,7 +21,7 @@
template<int RPM_BIN_SIZE, int LOAD_BIN_SIZE, typename vType> template<int RPM_BIN_SIZE, int LOAD_BIN_SIZE, typename vType>
class Map3D { class Map3D {
public: public:
Map3D(const char*name); explicit Map3D(const char*name);
Map3D(const char*name, float multiplier); Map3D(const char*name, float multiplier);
void init(vType table[RPM_BIN_SIZE][LOAD_BIN_SIZE], const float loadBins[LOAD_BIN_SIZE], const float rpmBins[RPM_BIN_SIZE]); void init(vType table[RPM_BIN_SIZE][LOAD_BIN_SIZE], const float loadBins[LOAD_BIN_SIZE], const float rpmBins[RPM_BIN_SIZE]);
float getValue(float xRpm, float y); float getValue(float xRpm, float y);

View File

@ -44,7 +44,7 @@ public:
class LoggingWithStorage : public Logging { class LoggingWithStorage : public Logging {
public: public:
LoggingWithStorage(const char *name); explicit LoggingWithStorage(const char *name);
char DEFAULT_BUFFER[200]; char DEFAULT_BUFFER[200];
}; };

View File

@ -86,7 +86,7 @@ void FastInterpolation::init(float x1, float y1, float x2, float y2) {
b = y1 - a * x1; b = y1 - a * x1;
} }
float FastInterpolation::getValue(float x) { float FastInterpolation::getValue(float x) const {
return a * x + b; return a * x + b;
} }

View File

@ -171,7 +171,7 @@ public:
FastInterpolation(); FastInterpolation();
FastInterpolation(float x1, float y1, float x2, float y2); FastInterpolation(float x1, float y1, float x2, float y2);
void init(float x1, float y1, float x2, float y2); void init(float x1, float y1, float x2, float y2);
float getValue(float x); float getValue(float x) const;
private: private:
float a, b; float a, b;
}; };

View File

@ -26,7 +26,7 @@ void Pid::initPidClass(pid_s *pid) {
reset(); reset();
} }
bool Pid::isSame(pid_s *pid) { bool Pid::isSame(pid_s *pid) const {
return this->pid->pFactor == pid->pFactor return this->pid->pFactor == pid->pFactor
&& this->pid->iFactor == pid->iFactor && this->pid->iFactor == pid->iFactor
&& this->pid->dFactor == pid->dFactor && this->pid->dFactor == pid->dFactor
@ -86,27 +86,27 @@ void Pid::reset(void) {
resetCounter++; resetCounter++;
} }
float Pid::getP(void) { float Pid::getP(void) const {
return pid->pFactor; return pid->pFactor;
} }
float Pid::getI(void) { float Pid::getI(void) const {
return pid->iFactor; return pid->iFactor;
} }
float Pid::getPrevError(void) { float Pid::getPrevError(void) const {
return previousError; return previousError;
} }
float Pid::getIntegration(void) { float Pid::getIntegration(void) const {
return iTerm; return iTerm;
} }
float Pid::getD(void) { float Pid::getD(void) const {
return pid->dFactor; return pid->dFactor;
} }
float Pid::getOffset(void) { float Pid::getOffset(void) const {
return pid->offset; return pid->offset;
} }

View File

@ -32,9 +32,9 @@ class Pid {
public: public:
Pid(); Pid();
Pid(pid_s *pid); explicit Pid(pid_s *pid);
void initPidClass(pid_s *pid); void initPidClass(pid_s *pid);
bool isSame(pid_s *pid); bool isSame(pid_s *pid) const;
/** /**
* This version of the methor takes dTime from pid_s * This version of the methor takes dTime from pid_s
@ -48,12 +48,12 @@ public:
float getUnclampedOutput(float target, float input, float dTime); float getUnclampedOutput(float target, float input, float dTime);
void updateFactors(float pFactor, float iFactor, float dFactor); void updateFactors(float pFactor, float iFactor, float dFactor);
virtual void reset(void); virtual void reset(void);
float getP(void); float getP(void) const;
float getI(void); float getI(void) const;
float getD(void); float getD(void) const;
float getOffset(void); float getOffset(void) const;
float getIntegration(void); float getIntegration(void) const;
float getPrevError(void); float getPrevError(void) const;
void setErrorAmplification(float coef); void setErrorAmplification(float coef);
#if EFI_TUNER_STUDIO #if EFI_TUNER_STUDIO
void postState(TunerStudioOutputChannels *tsOutputChannels); void postState(TunerStudioOutputChannels *tsOutputChannels);
@ -94,11 +94,11 @@ class PidCic : public Pid {
public: public:
PidCic(); PidCic();
PidCic(pid_s *pid); explicit PidCic(pid_s *pid);
virtual void reset(void); void reset(void) override;
using Pid::getOutput; using Pid::getOutput;
virtual float getOutput(float target, float input, float dTime); float getOutput(float target, float input, float dTime) override;
private: private:
// Circular running-average buffer for I-term, used by CIC-like filter // Circular running-average buffer for I-term, used by CIC-like filter
@ -109,7 +109,7 @@ private:
int totalItermCnt; int totalItermCnt;
private: private:
virtual void updateITerm(float value); void updateITerm(float value) override;
}; };
#endif /* PID_H_ */ #endif /* PID_H_ */