diff --git a/firmware/controllers/trigger/trigger_decoder.cpp b/firmware/controllers/trigger/trigger_decoder.cpp index 0c4a7b4cc9..59d978ca0c 100644 --- a/firmware/controllers/trigger/trigger_decoder.cpp +++ b/firmware/controllers/trigger/trigger_decoder.cpp @@ -180,6 +180,7 @@ void prepareEventAngles(TriggerWaveform *shape, efiAssertVoid(CUSTOM_TRIGGER_CYCLE, !cisnan(angle), "trgSyncNaN"); fixAngle(angle, "trgSync", CUSTOM_TRIGGER_SYNC_ANGLE_RANGE); if (engineConfiguration->useOnlyRisingEdgeForTrigger) { + assertIsInBounds(triggerDefinitionIndex, shape->isRiseEvent, "isRise"); if (shape->isRiseEvent[triggerDefinitionIndex]) { riseOnlyIndex += 2; details->eventAngles[riseOnlyIndex] = angle; @@ -204,13 +205,16 @@ void TriggerStateWithRunningStatistics::movePreSynchTimestamps(DECLARE_ENGINE_PA // here we take timestamps of events which happened prior to synchronization and place them // at appropriate locations for (int i = 0; i < spinningEventIndex;i++) { - timeOfLastEvent[getTriggerSize() - i] = spinningEvents[i]; + int newIndex = getTriggerSize() - i; + assertIsInBounds(newIndex, timeOfLastEvent, "move timeOfLastEvent"); + timeOfLastEvent[newIndex] = spinningEvents[i]; } } float TriggerStateWithRunningStatistics::calculateInstantRpm(TriggerFormDetails *triggerFormDetails, int *prevIndexOut, efitick_t nowNt DECLARE_ENGINE_PARAMETER_SUFFIX) { int current_index = currentCycle.current_index; // local copy so that noone changes the value on us + assertIsInBounds(current_index, timeOfLastEvent, "calc timeOfLastEvent"); timeOfLastEvent[current_index] = nowNt; /** * Here we calculate RPM based on last 90 degrees @@ -247,6 +251,7 @@ float TriggerStateWithRunningStatistics::calculateInstantRpm(TriggerFormDetails return prevInstantRpmValue; float instantRpm = (60000000.0 / 360 * US_TO_NT_MULTIPLIER) * angleDiff / time; + assertIsInBounds(current_index, instantRpmValue, "instantRpmValue"); instantRpmValue[current_index] = instantRpm; // This fixes early RPM instability based on incomplete data diff --git a/firmware/controllers/trigger/trigger_emulator_algo.cpp b/firmware/controllers/trigger/trigger_emulator_algo.cpp index 1e22685ed4..41fca7ad2d 100644 --- a/firmware/controllers/trigger/trigger_emulator_algo.cpp +++ b/firmware/controllers/trigger/trigger_emulator_algo.cpp @@ -175,9 +175,11 @@ void initTriggerEmulatorLogic(Logging *sharedLogger DECLARE_ENGINE_PARAMETER_SUF s->wave.channels[0].pinStates, s->wave.channels[1].pinStates, s->wave.channels[2].pinStates }; + int phaseCount = s->getSize(); + assertIsInBounds(phaseCount - 1, pwmSwitchTimesBuffer, "pwmSwitchTimesBuffer"); triggerSignal.weComplexInit("position sensor", &engine->executor, - s->getSize(), s->wave.switchTimes, PWM_PHASE_MAX_WAVE_PER_PWM, + phaseCount, s->wave.switchTimes, PWM_PHASE_MAX_WAVE_PER_PWM, pinStates, updateTriggerWaveformIfNeeded, (pwm_gen_callback*)emulatorApplyPinState); addConsoleActionI(CMD_RPM, setTriggerEmulatorRPM);