rusefi/firmware/controllers/engine_cycle/spark_logic.cpp

508 lines
17 KiB
C++
Raw Normal View History

2016-09-15 15:02:36 -07:00
/*
* @file spark_logic.cpp
*
* @date Sep 15, 2016
2020-01-07 21:02:40 -08:00
* @author Andrey Belomutskiy, (c) 2012-2020
2016-09-15 15:02:36 -07:00
*/
#include "pch.h"
2019-12-02 19:28:32 -08:00
#include "spark_logic.h"
// dependency injection
#include "engine_state.h"
#include "rpm_calculator_api.h"
// end of injection
2016-09-21 20:03:22 -07:00
#include "utlist.h"
#include "event_queue.h"
2020-05-25 21:07:18 -07:00
#include "tooth_logger.h"
2016-09-15 15:02:36 -07:00
#include "knock_logic.h"
#if EFI_ENGINE_CONTROL
2019-08-24 23:01:09 -07:00
#if EFI_UNIT_TEST
extern bool verboseMode;
#endif /* EFI_UNIT_TEST */
2016-09-15 15:02:36 -07:00
2020-07-20 10:38:33 -07:00
#if EFI_PRINTF_FUEL_DETAILS || FUEL_MATH_EXTREME_LOGGING
extern bool printFuelDebug;
#endif // EFI_PRINTF_FUEL_DETAILS
2016-09-21 20:03:22 -07:00
static cyclic_buffer<int> ignitionErrorDetection;
2016-09-15 15:02:36 -07:00
2019-09-22 05:22:35 -07:00
static const char *prevSparkName = nullptr;
2016-11-02 20:01:48 -07:00
2016-09-21 20:03:22 -07:00
int isIgnitionTimingError(void) {
return ignitionErrorDetection.sum(6) > 4;
}
static void fireSparkBySettingPinLow(IgnitionEvent *event, IgnitionOutputPin *output) {
efitick_t nowNt = getTimeNowNt();
2019-04-12 19:07:03 -07:00
#if SPARK_EXTREME_LOGGING
efiPrintf("spark goes low %d %s %d current=%d cnt=%d id=%d", getRevolutionCounter(), output->name, (int)getTimeNowUs(),
2016-11-01 20:01:54 -07:00
output->currentLogicValue, output->outOfOrder, event->sparkId);
2020-07-20 10:38:33 -07:00
#endif /* SPARK_EXTREME_LOGGING */
2016-10-31 19:02:12 -07:00
2016-11-01 18:03:07 -07:00
/**
* there are two kinds of 'out-of-order'
* 1) low goes before high, everything is fine after words
*
* 2) we have an un-matched low followed by legit pairs
*/
2016-11-01 20:01:54 -07:00
output->signalFallSparkId = event->sparkId;
2016-11-01 18:03:07 -07:00
2016-10-31 19:02:12 -07:00
if (!output->currentLogicValue) {
warning(CUSTOM_OUT_OF_ORDER_COIL, "out-of-order coil off %s", output->getName());
2016-11-01 20:01:54 -07:00
output->outOfOrder = true;
2016-10-31 19:02:12 -07:00
}
2017-04-21 16:23:20 -07:00
output->setLow();
2016-09-21 20:03:22 -07:00
}
// todo: make this a class method?
#define assertPinAssigned(output) { \
if (!output->isInitialized()) { \
warning(CUSTOM_OBD_COIL_PIN_NOT_ASSIGNED, "Pin Not Assigned check configuration #%s", (output)->getName()); \
} \
}
static void prepareCylinderIgnitionSchedule(angle_t dwellAngleDuration, floatms_t sparkDwell, IgnitionEvent *event) {
// todo: clean up this implementation? does not look too nice as is.
// let's save planned duration so that we can later compare it with reality
event->sparkDwell = sparkDwell;
2021-12-05 07:46:35 -08:00
const angle_t sparkAngle =
// Negate because timing *before* TDC, and we schedule *after* TDC
- getEngineState()->timingAdvance[event->cylinderNumber]
2021-12-05 07:46:35 -08:00
// Offset by this cylinder's position in the cycle
+ getCylinderAngle(event->cylinderIndex, event->cylinderNumber)
// Pull any extra timing for knock retard
+ engine->module<KnockController>()->getKnockRetard();
2021-12-05 07:46:35 -08:00
2019-12-02 17:16:41 -08:00
efiAssertVoid(CUSTOM_SPARK_ANGLE_1, !cisnan(sparkAngle), "sparkAngle#1");
const int index = engine->ignitionPin[event->cylinderIndex];
const int coilIndex = ID2INDEX(getCylinderId(index));
IgnitionOutputPin *output = &enginePins.coils[coilIndex];
IgnitionOutputPin *secondOutput;
// We need two outputs if:
// - we are running wasted spark, and have "two wire" mode enabled
// - We are running sequential mode, but we're cranking, so we should run in two wire wasted mode (not one wire wasted)
bool isTwoWireWasted = engineConfiguration->twoWireBatchIgnition || (engineConfiguration->ignitionMode == IM_INDIVIDUAL_COILS);
if (getCurrentIgnitionMode() == IM_WASTED_SPARK && isTwoWireWasted) {
int secondIndex = index + engineConfiguration->specs.cylindersCount / 2;
int secondCoilIndex = ID2INDEX(getCylinderId(secondIndex));
secondOutput = &enginePins.coils[secondCoilIndex];
assertPinAssigned(secondOutput);
} else {
2019-09-22 05:22:35 -07:00
secondOutput = nullptr;
}
assertPinAssigned(output);
event->outputs[0] = output;
event->outputs[1] = secondOutput;
2019-11-23 20:49:39 -08:00
event->sparkAngle = sparkAngle;
// Stash which cylinder we're scheduling so that knock sensing knows which
// cylinder just fired
event->cylinderNumber = coilIndex;
2019-11-23 20:49:39 -08:00
angle_t dwellStartAngle = sparkAngle - dwellAngleDuration;
efiAssertVoid(CUSTOM_ERR_6590, !cisnan(dwellStartAngle), "findAngle#5");
assertAngleRange(dwellStartAngle, "findAngle dwellStartAngle", CUSTOM_ERR_6550);
event->dwellPosition.setAngle(dwellStartAngle);
2019-04-12 19:07:03 -07:00
#if FUEL_MATH_EXTREME_LOGGING
2020-07-20 10:38:33 -07:00
if (printFuelDebug) {
printf("addIgnitionEvent %s ind=%d\n", output->name, event->dwellPosition.triggerEventIndex);
}
// efiPrintf("addIgnitionEvent %s ind=%d", output->name, event->dwellPosition->eventIndex);
#endif /* FUEL_MATH_EXTREME_LOGGING */
}
static void chargeTrailingSpark(IgnitionOutputPin* pin) {
2021-10-01 20:50:32 -07:00
#if SPARK_EXTREME_LOGGING
efiPrintf("chargeTrailingSpark %s", pin->name);
#endif /* SPARK_EXTREME_LOGGING */
2021-07-21 20:36:46 -07:00
pin->setHigh();
}
static void fireTrailingSpark(IgnitionOutputPin* pin) {
2021-10-01 20:50:32 -07:00
#if SPARK_EXTREME_LOGGING
efiPrintf("fireTrailingSpark %s", pin->name);
#endif /* SPARK_EXTREME_LOGGING */
2021-07-21 20:36:46 -07:00
pin->setLow();
}
2021-10-01 22:17:53 -07:00
static void overFireSparkAndPrepareNextSchedule(IgnitionEvent *event) {
#if SPARK_EXTREME_LOGGING
efiPrintf("overFireSparkAndPrepareNextSchedule %s", event->outputs[0]->name);
#endif /* SPARK_EXTREME_LOGGING */
fireSparkAndPrepareNextSchedule(event);
}
void fireSparkAndPrepareNextSchedule(IgnitionEvent *event) {
for (int i = 0; i< MAX_OUTPUTS_FOR_IGNITION;i++) {
IgnitionOutputPin *output = event->outputs[i];
if (output) {
fireSparkBySettingPinLow(event, output);
}
}
2020-05-25 21:07:18 -07:00
efitick_t nowNt = getTimeNowNt();
#if EFI_TOOTH_LOGGER
LogTriggerCoilState(nowNt, false);
2020-05-25 21:07:18 -07:00
#endif // EFI_TOOTH_LOGGER
#if !EFI_UNIT_TEST
if (engineConfiguration->debugMode == DBG_DWELL_METRIC) {
#if EFI_TUNER_STUDIO
2019-10-07 23:01:41 -07:00
uint32_t actualDwellDurationNt = getTimeNowLowerNt() - event->actualStartOfDwellNt;
/**
* ratio of desired dwell duration to actual dwell duration gives us some idea of how good is input trigger jitter
*/
float ratio = NT2US(actualDwellDurationNt) / 1000.0 / event->sparkDwell;
// todo: smarted solution for index to field mapping
switch (event->cylinderIndex) {
case 0:
engine->outputChannels.debugFloatField1 = ratio;
break;
case 1:
engine->outputChannels.debugFloatField2 = ratio;
break;
case 2:
engine->outputChannels.debugFloatField3 = ratio;
break;
case 3:
engine->outputChannels.debugFloatField4 = ratio;
break;
}
#endif
}
#endif /* EFI_UNIT_TEST */
2016-11-29 17:02:41 -08:00
// now that we've just fired a coil let's prepare the new schedule for the next engine revolution
2018-07-24 17:40:44 -07:00
angle_t dwellAngleDuration = engine->engineState.dwellAngle;
floatms_t sparkDwell = engine->engineState.sparkDwell;
2019-11-23 20:49:39 -08:00
if (cisnan(dwellAngleDuration) || cisnan(sparkDwell)) {
2018-07-24 17:40:44 -07:00
// we are here if engine has just stopped
return;
}
// If there are more sparks to fire, schedule them
if (event->sparksRemaining > 0) {
event->sparksRemaining--;
efitick_t nextDwellStart = nowNt + engine->engineState.multispark.delay;
efitick_t nextFiring = nextDwellStart + engine->engineState.multispark.dwell;
2021-10-01 22:17:53 -07:00
#if SPARK_EXTREME_LOGGING
efiPrintf("schedule multispark");
#endif /* SPARK_EXTREME_LOGGING */
// We can schedule both of these right away, since we're going for "asap" not "particular angle"
engine->executor.scheduleByTimestampNt("dwell", &event->dwellStartTimer, nextDwellStart, { &turnSparkPinHigh, event });
engine->executor.scheduleByTimestampNt("firing", &event->sparkEvent.scheduling, nextFiring, { fireSparkAndPrepareNextSchedule, event });
} else {
if (engineConfiguration->enableTrailingSparks) {
2021-10-01 20:50:32 -07:00
#if SPARK_EXTREME_LOGGING
efiPrintf("scheduleByAngle TrailingSparks");
#endif /* SPARK_EXTREME_LOGGING */
// Trailing sparks are enabled - schedule an event for the corresponding trailing coil
scheduleByAngle(
&event->trailingSparkFire, nowNt, engine->engineState.trailingSparkAngle,
{ &fireTrailingSpark, &enginePins.trailingCoils[event->cylinderNumber] }
);
}
// If all events have been scheduled, prepare for next time.
prepareCylinderIgnitionSchedule(dwellAngleDuration, sparkDwell, event);
}
engine->onSparkFireKnockSense(event->cylinderNumber, nowNt);
2016-11-26 21:01:22 -08:00
}
static void startDwellByTurningSparkPinHigh(IgnitionEvent *event, IgnitionOutputPin *output) {
// todo: no reason for this to be disabled in unit_test mode?!
2019-04-12 19:07:03 -07:00
#if ! EFI_UNIT_TEST
2022-01-20 20:32:59 -08:00
if (Sensor::getOrZero(SensorType::Rpm) > 2 * engineConfiguration->cranking.rpm) {
const char *outputName = output->getName();
if (prevSparkName == outputName && getCurrentIgnitionMode() != IM_ONE_COIL) {
2016-11-07 19:02:21 -08:00
warning(CUSTOM_OBD_SKIPPED_SPARK, "looks like skipped spark event %d %s", getRevolutionCounter(), outputName);
}
prevSparkName = outputName;
}
#endif /* EFI_UNIT_TEST */
2019-04-12 19:07:03 -07:00
#if SPARK_EXTREME_LOGGING
efiPrintf("spark goes high %d %s %d current=%d cnt=%d id=%d", getRevolutionCounter(), output->name, (int)getTimeNowUs(),
2016-11-01 20:01:54 -07:00
output->currentLogicValue, output->outOfOrder, event->sparkId);
2020-07-20 10:38:33 -07:00
#endif /* SPARK_EXTREME_LOGGING */
2016-10-31 19:02:12 -07:00
2016-11-01 20:01:54 -07:00
if (output->outOfOrder) {
output->outOfOrder = false;
if (output->signalFallSparkId == event->sparkId) {
2016-11-01 18:03:07 -07:00
// let's save this coil if things do not look right
return;
}
2016-10-31 19:02:12 -07:00
}
2017-04-21 16:23:20 -07:00
output->setHigh();
2016-09-21 20:03:22 -07:00
}
2016-11-26 21:01:22 -08:00
void turnSparkPinHigh(IgnitionEvent *event) {
2019-10-07 23:01:41 -07:00
event->actualStartOfDwellNt = getTimeNowLowerNt();
2020-05-25 21:07:18 -07:00
efitick_t nowNt = getTimeNowNt();
#if EFI_TOOTH_LOGGER
LogTriggerCoilState(nowNt, true);
2020-05-25 21:07:18 -07:00
#endif // EFI_TOOTH_LOGGER
2016-11-27 18:04:45 -08:00
for (int i = 0; i< MAX_OUTPUTS_FOR_IGNITION;i++) {
IgnitionOutputPin *output = event->outputs[i];
if (output != NULL) {
startDwellByTurningSparkPinHigh(event, output);
2016-11-27 18:04:45 -08:00
}
}
if (engineConfiguration->enableTrailingSparks) {
2021-07-21 21:01:54 -07:00
IgnitionOutputPin *output = &enginePins.trailingCoils[event->cylinderNumber];
// Trailing sparks are enabled - schedule an event for the corresponding trailing coil
scheduleByAngle(
&event->trailingSparkCharge, nowNt, engine->engineState.trailingSparkAngle,
2021-07-21 21:01:54 -07:00
{ &chargeTrailingSpark, output }
);
}
2016-11-26 21:01:22 -08:00
}
2021-11-16 02:56:15 -08:00
static void scheduleSparkEvent(bool limitedSpark, uint32_t trgEventIndex, IgnitionEvent *event,
int rpm, efitick_t edgeTimestamp, float currentPhase) {
2016-09-21 20:03:22 -07:00
angle_t sparkAngle = event->sparkAngle;
const floatms_t dwellMs = engine->engineState.sparkDwell;
2016-10-09 16:03:51 -07:00
if (cisnan(dwellMs) || dwellMs <= 0) {
2018-01-23 09:05:14 -08:00
warning(CUSTOM_DWELL, "invalid dwell to handle: %.2f at %d", dwellMs, rpm);
2016-09-21 20:03:22 -07:00
return;
}
2019-11-23 20:49:39 -08:00
if (cisnan(sparkAngle)) {
2021-10-02 22:30:42 -07:00
warning(CUSTOM_ADVANCE_SPARK, "NaN advance");
2018-07-26 14:11:47 -07:00
return;
}
2016-09-21 20:03:22 -07:00
float angleOffset = event->dwellPosition.angleOffsetFromTriggerEvent;
int isIgnitionError = angleOffset < 0;
2016-09-21 20:03:22 -07:00
ignitionErrorDetection.add(isIgnitionError);
if (isIgnitionError) {
2019-04-12 19:07:03 -07:00
#if EFI_PROD_CODE
efiPrintf("Negative spark delay=%.1f deg", angleOffset);
2017-06-08 21:05:41 -07:00
#endif /* EFI_PROD_CODE */
2016-09-21 20:03:22 -07:00
return;
}
/**
* By the way 32-bit value should hold at least 400 hours of events at 6K RPM x 12 events per revolution
*/
event->sparkId = engine->engineState.sparkCounter++;
2016-11-01 18:03:07 -07:00
efitick_t chargeTime = 0;
2016-09-21 20:03:22 -07:00
/**
* The start of charge is always within the current trigger event range, so just plain time-based scheduling
*/
if (!limitedSpark) {
2019-04-12 19:07:03 -07:00
#if SPARK_EXTREME_LOGGING
efiPrintf("scheduling sparkUp ind=%d %d %s now=%d %d later id=%d", trgEventIndex, getRevolutionCounter(), event->getOutputForLoggins()->name, (int)getTimeNowUs(), (int)angleOffset,
event->sparkId);
2020-07-20 10:38:33 -07:00
#endif /* SPARK_EXTREME_LOGGING */
2016-10-29 14:03:45 -07:00
2016-11-02 20:01:48 -07:00
2016-10-29 14:03:45 -07:00
/**
2016-09-21 20:03:22 -07:00
* Note how we do not check if spark is limited or not while scheduling 'spark down'
* This way we make sure that coil dwell started while spark was enabled would fire and not burn
* the coil.
*/
chargeTime = scheduleByAngle(&event->dwellStartTimer, edgeTimestamp, angleOffset, { &turnSparkPinHigh, event });
event->sparksRemaining = engine->engineState.multispark.count;
} else {
// don't fire multispark if spark is cut completely!
event->sparksRemaining = 0;
2016-09-21 20:03:22 -07:00
}
2016-09-21 20:03:22 -07:00
/**
* Spark event is often happening during a later trigger event timeframe
*/
2018-07-26 14:11:47 -07:00
2019-11-23 20:49:39 -08:00
efiAssertVoid(CUSTOM_ERR_6591, !cisnan(sparkAngle), "findAngle#4");
assertAngleRange(sparkAngle, "findAngle#a5", CUSTOM_ERR_6549);
2016-09-21 20:03:22 -07:00
bool scheduled = engine->module<TriggerScheduler>()->scheduleOrQueue(
&event->sparkEvent, trgEventIndex, edgeTimestamp, sparkAngle,
{ fireSparkAndPrepareNextSchedule, event });
2016-09-21 20:03:22 -07:00
if (scheduled) {
2019-04-12 19:07:03 -07:00
#if SPARK_EXTREME_LOGGING
efiPrintf("scheduling sparkDown ind=%d %d %s now=%d later id=%d", trgEventIndex, getRevolutionCounter(), event->getOutputForLoggins()->name, (int)getTimeNowUs(), event->sparkId);
2016-10-29 14:03:45 -07:00
#endif /* FUEL_MATH_EXTREME_LOGGING */
2016-09-21 20:03:22 -07:00
} else {
2019-04-12 19:07:03 -07:00
#if SPARK_EXTREME_LOGGING
efiPrintf("to queue sparkDown ind=%d %d %s now=%d for id=%d", trgEventIndex, getRevolutionCounter(), event->getOutputForLoggins()->name, (int)getTimeNowUs(), event->sparkEvent.position.triggerEventIndex);
2020-07-20 10:38:33 -07:00
#endif /* SPARK_EXTREME_LOGGING */
if (!limitedSpark && engine->enableOverdwellProtection) {
// auto fire spark at 1.5x nominal dwell
efitick_t fireTime = chargeTime + MSF2NT(1.5f * dwellMs);
2021-10-01 22:17:53 -07:00
engine->executor.scheduleByTimestampNt("overdwell", &event->sparkEvent.scheduling, fireTime, { overFireSparkAndPrepareNextSchedule, event });
}
}
2016-09-21 20:03:22 -07:00
#if EFI_UNIT_TEST
if (verboseMode) {
printf("spark dwell@ %d/%d spark@ %d/%d id=%d\r\n", event->dwellPosition.triggerEventIndex, (int)event->dwellPosition.angleOffsetFromTriggerEvent,
event->sparkEvent.position.triggerEventIndex, (int)event->sparkEvent.position.angleOffsetFromTriggerEvent,
event->sparkId);
2016-09-21 20:03:22 -07:00
}
#endif
2016-09-21 20:03:22 -07:00
}
void initializeIgnitionActions() {
2019-11-17 06:02:49 -08:00
IgnitionEventList *list = &engine->ignitionEvents;
angle_t dwellAngle = engine->engineState.dwellAngle;
floatms_t sparkDwell = engine->engineState.sparkDwell;
if (cisnan(engine->engineState.timingAdvance[0]) || cisnan(dwellAngle)) {
2016-12-18 07:02:38 -08:00
// error should already be reported
// need to invalidate previous ignition schedule
list->isReady = false;
return;
}
2018-07-25 20:03:04 -07:00
efiAssertVoid(CUSTOM_ERR_6592, engineConfiguration->specs.cylindersCount > 0, "cylindersCount");
2016-11-27 19:01:36 -08:00
for (size_t cylinderIndex = 0; cylinderIndex < engineConfiguration->specs.cylindersCount; cylinderIndex++) {
2016-11-28 11:01:52 -08:00
list->elements[cylinderIndex].cylinderIndex = cylinderIndex;
prepareCylinderIgnitionSchedule(dwellAngle, sparkDwell, &list->elements[cylinderIndex]);
2016-11-25 11:03:06 -08:00
}
2016-11-28 09:03:02 -08:00
list->isReady = true;
2016-11-25 11:03:06 -08:00
}
static void prepareIgnitionSchedule() {
ScopePerf perf(PE::PrepareIgnitionSchedule);
2016-09-21 21:03:00 -07:00
/**
* TODO: warning. there is a bit of a hack here, todo: improve.
2019-10-07 23:01:41 -07:00
* currently output signals/times dwellStartTimer from the previous revolutions could be
2016-09-21 21:03:00 -07:00
* still used because they have crossed the revolution boundary
* but we are already re-purposing the output signals, but everything works because we
* are not affecting that space in memory. todo: use two instances of 'ignitionSignals'
*/
2022-09-13 22:34:52 -07:00
operation_mode_e operationMode = getEngineRotationState()->getOperationMode();
float maxAllowedDwellAngle = (int) (getEngineCycle(operationMode) / 2); // the cast is about making Coverity happy
2016-09-21 21:03:00 -07:00
if (getCurrentIgnitionMode() == IM_ONE_COIL) {
maxAllowedDwellAngle = getEngineCycle(operationMode) / engineConfiguration->specs.cylindersCount / 1.1;
2016-09-21 21:03:00 -07:00
}
if (engine->engineState.dwellAngle == 0) {
2017-01-22 06:03:08 -08:00
warning(CUSTOM_ZERO_DWELL, "dwell is zero?");
2016-09-21 21:03:00 -07:00
}
if (engine->engineState.dwellAngle > maxAllowedDwellAngle) {
2018-01-23 09:05:14 -08:00
warning(CUSTOM_DWELL_TOO_LONG, "dwell angle too long: %.2f", engine->engineState.dwellAngle);
2016-09-21 21:03:00 -07:00
}
// todo: add some check for dwell overflow? like 4 times 6 ms while engine cycle is less then that
initializeIgnitionActions();
2016-09-21 21:03:00 -07:00
}
void onTriggerEventSparkLogic(uint32_t trgEventIndex, int rpm, efitick_t edgeTimestamp, float currentPhase, float nextPhase) {
2019-10-13 13:14:08 -07:00
ScopePerf perf(PE::OnTriggerEventSparkLogic);
if (!isValidRpm(rpm) || !engineConfiguration->isIgnitionEnabled) {
// this might happen for instance in case of a single trigger event after a pause
return;
}
2022-08-31 20:59:23 -07:00
LimpState limitedSparkState = engine->limpManager.allowIgnition();
// todo: eliminate state copy logic by giving limpManager it's owm limp_manager.txt and leveraging LiveData
2022-08-31 20:59:23 -07:00
engine->outputChannels.sparkCutReason = (int8_t)limitedSparkState.reason;
bool limitedSpark = !limitedSparkState.value;
if (!engine->ignitionEvents.isReady) {
prepareIgnitionSchedule();
}
/**
* Ignition schedule is defined once per revolution
* See initializeIgnitionActions()
*/
2016-09-21 20:03:22 -07:00
// scheduleSimpleMsg(&logger, "eventId spark ", eventIndex);
if (engine->ignitionEvents.isReady) {
for (size_t i = 0; i < engineConfiguration->specs.cylindersCount; i++) {
IgnitionEvent *event = &engine->ignitionEvents.elements[i];
2019-10-07 21:54:19 -07:00
if (event->dwellPosition.triggerEventIndex != trgEventIndex)
2016-11-28 09:03:02 -08:00
continue;
2021-09-06 07:35:26 -07:00
if (i == 0 && engineConfiguration->artificialTestMisfire && (getRevolutionCounter() % ((int)engineConfiguration->scriptSetting[5]) == 0)) {
2021-09-06 07:35:26 -07:00
// artificial misfire on cylinder #1 for testing purposes
2021-09-06 08:10:11 -07:00
// enable artificialMisfire
// set_fsio_setting 6 20
warning(CUSTOM_ARTIFICIAL_MISFIRE, "artificial misfire on cylinder #1 for testing purposes %d", engine->engineState.sparkCounter);
2021-09-06 07:35:26 -07:00
continue;
}
2021-11-17 01:06:22 -08:00
#if EFI_LAUNCH_CONTROL
if (engine->softSparkLimiter.shouldSkip()) {
continue;
}
#endif // EFI_LAUNCH_CONTROL
2021-09-06 07:35:26 -07:00
scheduleSparkEvent(limitedSpark, trgEventIndex, event, rpm, edgeTimestamp, currentPhase);
2016-11-28 09:03:02 -08:00
}
2016-09-21 20:03:22 -07:00
}
}
2017-03-06 22:26:58 -08:00
/**
* Number of sparks per physical coil
* @see getNumberOfInjections
*/
int getNumberOfSparks(ignition_mode_e mode) {
2017-03-06 22:26:58 -08:00
switch (mode) {
case IM_ONE_COIL:
return engineConfiguration->specs.cylindersCount;
2019-11-16 13:00:50 -08:00
case IM_TWO_COILS:
return engineConfiguration->specs.cylindersCount / 2;
2017-03-06 22:26:58 -08:00
case IM_INDIVIDUAL_COILS:
return 1;
case IM_WASTED_SPARK:
return 2;
default:
2017-04-12 06:26:22 -07:00
firmwareError(CUSTOM_ERR_IGNITION_MODE, "Unexpected ignition_mode_e %d", mode);
2017-03-06 22:26:58 -08:00
return 1;
}
}
/**
* @see getInjectorDutyCycle
*/
percent_t getCoilDutyCycle(int rpm) {
floatms_t totalPerCycle = engine->engineState.sparkDwell * getNumberOfSparks(getCurrentIgnitionMode());
2022-09-13 22:34:52 -07:00
floatms_t engineCycleDuration = getCrankshaftRevolutionTimeMs(rpm) * (getEngineRotationState()->getOperationMode() == TWO_STROKE ? 1 : 2);
2017-03-06 22:26:58 -08:00
return 100 * totalPerCycle / engineCycleDuration;
}
#endif // EFI_ENGINE_CONTROL