auto-sync
This commit is contained in:
parent
e75a3b94b9
commit
a453e3bfe0
|
@ -144,9 +144,10 @@ void TriggerState::decodeTriggerEvent(trigger_event_e const signal, efitime_t no
|
||||||
if (isLessImportant(signal)) {
|
if (isLessImportant(signal)) {
|
||||||
#if EFI_UNIT_TEST || defined(__DOXYGEN__)
|
#if EFI_UNIT_TEST || defined(__DOXYGEN__)
|
||||||
if (printTriggerDebug) {
|
if (printTriggerDebug) {
|
||||||
printf("%s isLessImportant %s\r\n",
|
printf("%s isLessImportant %s %d\r\n",
|
||||||
getTrigger_type_e(engineConfiguration->trigger.type),
|
getTrigger_type_e(engineConfiguration->trigger.type),
|
||||||
getTrigger_event_e(signal));
|
getTrigger_event_e(signal),
|
||||||
|
nowNt);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -163,6 +164,16 @@ void TriggerState::decodeTriggerEvent(trigger_event_e const signal, efitime_t no
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
|
#if EFI_UNIT_TEST || defined(__DOXYGEN__)
|
||||||
|
if (printTriggerDebug) {
|
||||||
|
printf("%s event %s %d\r\n",
|
||||||
|
getTrigger_type_e(engineConfiguration->trigger.type),
|
||||||
|
getTrigger_event_e(signal),
|
||||||
|
nowNt);
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
isFirstEvent = false;
|
isFirstEvent = false;
|
||||||
// todo: skip a number of signal from the beginning
|
// todo: skip a number of signal from the beginning
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue