rusefi/firmware/controllers/trigger/trigger_simulator.cpp

150 lines
5.0 KiB
C++
Raw Normal View History

2015-09-23 18:02:33 -07:00
/*
* @file trigger_simulator.cpp
*
* @date Sep 23, 2015
2020-01-13 18:57:43 -08:00
* @author Andrey Belomutskiy, (c) 2012-2020
2015-09-23 18:02:33 -07:00
*/
#include "pch.h"
2015-09-23 18:02:33 -07:00
#include "trigger_simulator.h"
2017-03-03 21:17:53 -08:00
#include "trigger_emulator_algo.h"
2015-09-23 18:02:33 -07:00
#if EFI_UNIT_TEST
extern bool printTriggerTrace;
#endif
2017-03-03 21:17:53 -08:00
// this is not the only place where we have 'isUpEvent'. todo: reuse
2020-01-27 21:27:30 -08:00
static const bool isRisingEdge[HW_EVENT_TYPES] = { false, true, false, true, false, true };
2017-03-03 21:17:53 -08:00
/**
* todo: should this method be invoked somewhere deeper? at the moment we have too many usages too high
* @return true if front should be decoded further, false if we are not interested
*/
bool isUsefulSignal(trigger_event_e signal, const TriggerWaveform& shape) {
return !shape.useOnlyRisingEdges || isRisingEdge[(int) signal];
2017-03-03 21:17:53 -08:00
}
2019-04-12 19:07:03 -07:00
#if EFI_UNIT_TEST
2017-03-04 06:07:10 -08:00
extern bool printTriggerDebug;
#endif /* ! EFI_UNIT_TEST */
int getSimulatedEventTime(const TriggerWaveform& shape, int i) {
int stateIndex = i % shape.getSize();
int loopIndex = i / shape.getSize();
return (int) (SIMULATION_CYCLE_PERIOD * (loopIndex + shape.wave.getSwitchTime(stateIndex)));
}
void TriggerStimulatorHelper::feedSimulatedEvent(
const TriggerConfiguration& triggerConfiguration,
2022-05-10 01:41:39 -07:00
TriggerDecoderBase& state,
const TriggerWaveform& shape,
int i
2020-08-23 23:23:13 -07:00
) {
efiAssertVoid(ObdCode::CUSTOM_ERR_6593, shape.getSize() > 0, "size not zero");
int stateIndex = i % shape.getSize();
2015-09-23 18:02:33 -07:00
int time = getSimulatedEventTime(shape, i);
2015-09-23 18:02:33 -07:00
const auto & multiChannelStateSequence = shape.wave;
2019-04-14 10:52:27 -07:00
#if EFI_UNIT_TEST
int prevIndex = getPreviousIndex(stateIndex, shape.getSize());
2019-04-14 10:52:27 -07:00
pin_state_t primaryWheelState = multiChannelStateSequence.getChannelState(0, prevIndex);
pin_state_t newPrimaryWheelState = multiChannelStateSequence.getChannelState(0, stateIndex);
2015-09-23 18:02:33 -07:00
pin_state_t secondaryWheelState = multiChannelStateSequence.getChannelState(1, prevIndex);
pin_state_t newSecondaryWheelState = multiChannelStateSequence.getChannelState(1, stateIndex);
2015-09-23 18:02:33 -07:00
// pin_state_t thirdWheelState = multiChannelStateSequence->getChannelState(2, prevIndex);
// pin_state_t new3rdWheelState = multiChannelStateSequence->getChannelState(2, stateIndex);
2015-09-23 18:02:33 -07:00
2017-03-04 06:07:10 -08:00
if (printTriggerDebug) {
2020-07-19 11:17:15 -07:00
printf("TriggerStimulator: simulatedEvent: %d>%d primary %d>%d secondary %d>%d\r\n", prevIndex, stateIndex, primaryWheelState, newPrimaryWheelState,
2017-03-04 06:07:10 -08:00
secondaryWheelState, newSecondaryWheelState );
}
#endif /* EFI_UNIT_TEST */
2017-03-03 21:08:56 -08:00
// todo: code duplication with TriggerEmulatorHelper::handleEmulatorCallback?
constexpr trigger_event_e riseEvents[] = { SHAFT_PRIMARY_RISING, SHAFT_SECONDARY_RISING };
constexpr trigger_event_e fallEvents[] = { SHAFT_PRIMARY_FALLING, SHAFT_SECONDARY_FALLING };
2015-09-23 18:02:33 -07:00
2021-06-25 07:55:46 -07:00
for (size_t i = 0; i < PWM_PHASE_MAX_WAVE_PER_PWM; i++) {
if (needEvent(stateIndex, multiChannelStateSequence, i)) {
2021-06-25 07:55:46 -07:00
pin_state_t currentValue = multiChannelStateSequence.getChannelState(/*phaseIndex*/i, stateIndex);
2022-09-10 23:57:35 -07:00
trigger_event_e event = (currentValue == TriggerValue::RISE ? riseEvents : fallEvents)[i];
if (isUsefulSignal(event, shape)) {
2022-03-21 17:39:47 -07:00
state.decodeTriggerEvent(
"sim",
shape,
/* override */ nullptr,
2020-08-23 22:21:42 -07:00
triggerConfiguration,
2020-08-26 14:30:13 -07:00
event, time);
2021-06-25 07:55:46 -07:00
}
}
2015-09-23 18:02:33 -07:00
}
}
void TriggerStimulatorHelper::assertSyncPosition(
const TriggerConfiguration& triggerConfiguration,
const uint32_t syncIndex,
2022-05-10 01:41:39 -07:00
TriggerDecoderBase& state,
TriggerWaveform& shape
2020-08-23 23:23:13 -07:00
) {
2015-09-23 18:02:33 -07:00
2020-12-04 13:03:27 -08:00
// todo: is anything limiting this TEST_REVOLUTIONS? why does value '8' not work for example?
#define TEST_REVOLUTIONS 6
2018-02-05 14:41:05 -08:00
/**
* let's feed two more cycles to validate shape definition
*/
2020-12-04 13:03:27 -08:00
for (uint32_t i = syncIndex + 1; i <= syncIndex + TEST_REVOLUTIONS * shape.getSize(); i++) {
feedSimulatedEvent(triggerConfiguration, state, shape, i);
2015-09-23 18:02:33 -07:00
}
int revolutionCounter = state.getCrankSynchronizationCounter();
if (revolutionCounter != TEST_REVOLUTIONS * shape.getMitsubichaMult()) {
warning(ObdCode::CUSTOM_OBD_TRIGGER_WAVEFORM, "sync failed/wrong gap parameters trigger=%s revolutionCounter=%d",
getTrigger_type_e(triggerConfiguration.TriggerType.type),
revolutionCounter);
shape.setShapeDefinitionError(true);
2016-01-24 15:01:56 -08:00
return;
}
shape.shapeDefinitionError = false;
#if EFI_UNIT_TEST
if (printTriggerTrace) {
printf("Happy %s revolutionCounter=%d\r\n",
getTrigger_type_e(triggerConfiguration.TriggerType.type),
revolutionCounter);
}
#endif /* EFI_UNIT_TEST */
2015-09-23 18:02:33 -07:00
}
2017-03-04 06:07:10 -08:00
/**
* @return trigger synchronization point index, or error code if not found
*/
2022-11-05 21:10:50 -07:00
expected<uint32_t> TriggerStimulatorHelper::findTriggerSyncPoint(
TriggerWaveform& shape,
const TriggerConfiguration& triggerConfiguration,
2022-05-10 01:41:39 -07:00
TriggerDecoderBase& state) {
2015-09-23 18:02:33 -07:00
for (int i = 0; i < 4 * PWM_PHASE_MAX_COUNT; i++) {
feedSimulatedEvent(triggerConfiguration, state, shape, i);
2015-09-23 18:02:33 -07:00
2021-07-03 07:37:03 -07:00
if (state.getShaftSynchronized()) {
2015-09-23 18:02:33 -07:00
return i;
2020-01-26 11:20:55 -08:00
}
2015-09-23 18:02:33 -07:00
}
shape.setShapeDefinitionError(true);
if (engineConfiguration->overrideTriggerGaps) {
firmwareError(ObdCode::CUSTOM_ERR_CUSTOM_GAPS_BAD, "The custom trigger gaps are invalid for the current trigger type.");
} else {
firmwareError(ObdCode::CUSTOM_ERR_TRIGGER_SYNC, "findTriggerZeroEventIndex() failed");
}
2022-11-05 21:10:50 -07:00
return unexpected;
2015-09-23 18:02:33 -07:00
}