adjustment to #3722 (#3723)

* s

* behold, another bug a test caught

* test

* test generates usable trigger pattern so it works correctly

* comment

* don't need that
This commit is contained in:
Matthew Kennedy 2021-12-31 00:21:21 -06:00 committed by GitHub
parent 1bfebe102f
commit b3de217c1b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 25 additions and 4 deletions

View File

@ -54,6 +54,8 @@ void setTestCamEngineConfiguration() {
void setTestCrankEngineConfiguration() {
setTestCamEngineConfiguration();
engineConfiguration->trigger.type = TT_ONE;
setOperationMode(engineConfiguration, FOUR_STROKE_CRANK_SENSOR);
}

View File

@ -335,7 +335,7 @@ static bool noFiringUntilVvtSync(vvt_mode_e vvtMode) {
// V-Twin MAP phase sense needs to always wait for sync
if (vvtMode == VVT_MAP_V_TWIN_ANOTHER) {
return false;
return true;
}
// Symmetrical crank modes require cam sync before firing
@ -352,7 +352,7 @@ void mainTriggerCallback(uint32_t trgEventIndex, efitick_t edgeTimestamp) {
ScopePerf perf(PE::MainTriggerCallback);
if (noFiringUntilVvtSync(engineConfiguration->vvtMode[0])
&& !engine->triggerCentral.vvtState[0][0].getShaftSynchronized()) {
&& !engine->triggerCentral.triggerState.hasSynchronizedSymmetrical()) {
// Any engine that requires cam-assistance for a full crank sync (symmetrical crank) can't schedule until we have cam sync
// examples:
// NB2, Nissan VQ/MR: symmetrical crank wheel and we need to make sure no spark happens out of sync

View File

@ -80,6 +80,8 @@ void TriggerState::resetTriggerState() {
totalEventCountBase = 0;
isFirstEvent = true;
m_hasSynchronizedSymmetrical = false;
}
void TriggerState::setTriggerErrorState() {
@ -404,6 +406,10 @@ angle_t TriggerState::syncSymmetricalCrank(int divider, int remainder, angle_t e
incrementTotalEventCounter();
totalShift += engineCycle / divider;
}
// Allow injection/ignition to happen, we've now fully sync'd the crank based on new cam information
m_hasSynchronizedSymmetrical = true;
return totalShift;
}

View File

@ -155,6 +155,13 @@ public:
const trigger_config_s& triggerConfig
);
// Returns true if syncSymmetricalCrank has been called,
// ie if we have enough VVT information to have full sync on
// an indeterminite crank pattern
bool hasSynchronizedSymmetrical() const {
return m_hasSynchronizedSymmetrical;
}
private:
void resetCurrentCycleState();
bool isSyncPoint(const TriggerWaveform& triggerShape, trigger_type_e triggerType) const;
@ -164,6 +171,8 @@ private:
int64_t totalEventCountBase;
bool isFirstEvent;
bool m_hasSynchronizedSymmetrical = false;
};
// we only need 90 degrees of events so /4 or maybe even /8 should work?

View File

@ -15,17 +15,21 @@ TEST(trigger, map_cam_by_magic_point) {
engineConfiguration->mapCamDetectionAnglePosition = 90;
eth.smartFireTriggerEvents2(/*count*/10, /*delayMs*/200);
ASSERT_EQ( 75, GET_RPM()) << "RPM";
ASSERT_EQ(150, GET_RPM()) << "RPM";
ASSERT_EQ(1, engine->outputChannels.TEMPLOG_map_peak);
ASSERT_EQ(0, engine->outputChannels.vvtSyncCounter);
// Nothing should have been scheduled yet
ASSERT_EQ(0, engine->executor.size());
engine->outputChannels.instantMAPValue = 120;
eth.smartFireTriggerEvents2(/*count*/4, /*delayMs*/200);
ASSERT_EQ(2, engine->outputChannels.TEMPLOG_map_peak);
ASSERT_EQ(1, engine->outputChannels.vvtSyncCounter);
ASSERT_EQ(6, engine->outputChannels.TEMPLOG_MAP_AT_CYCLE_COUNT);
ASSERT_EQ(10, engine->outputChannels.TEMPLOG_MAP_AT_CYCLE_COUNT);
// We have "VVT" sync, things should be scheduled!
ASSERT_NE(0, engine->executor.size());
}