trigger error message makes trigger very unhappy #888
quick dirty temporary solution
This commit is contained in:
parent
9795fe1d0c
commit
e33a9c8301
|
@ -509,8 +509,15 @@ void TriggerState::decodeTriggerEvent(trigger_event_e const signal, efitime_t no
|
||||||
isSynchronizationPoint = isSync;
|
isSynchronizationPoint = isSync;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* todo: technically we can afford detailed logging even with 60/2 as long as low RPM
|
||||||
|
* todo: figure out exact threshold as a function of RPM and tooth count?
|
||||||
|
* Open question what is 'triggerShape->getSize()' for 60/2 is it 58 or 58*2 or 58*4?
|
||||||
|
*/
|
||||||
|
bool silentTriggerError = triggerShape->getSize() > 40 && CONFIG(silentTriggerError);
|
||||||
|
|
||||||
#if EFI_PROD_CODE
|
#if EFI_PROD_CODE
|
||||||
if (CONFIG(verboseTriggerSynchDetails) || (someSortOfTriggerError && !CONFIG(silentTriggerError))) {
|
if (CONFIG(verboseTriggerSynchDetails) || (someSortOfTriggerError && !silentTriggerError)) {
|
||||||
#else
|
#else
|
||||||
if (printTriggerDebug) {
|
if (printTriggerDebug) {
|
||||||
#endif /* EFI_PROD_CODE */
|
#endif /* EFI_PROD_CODE */
|
||||||
|
|
|
@ -713,7 +713,7 @@ bit vvtDisplayInverted
|
||||||
bit isVerboseETB;+Prints ETB details to rusEFI console
|
bit isVerboseETB;+Prints ETB details to rusEFI console
|
||||||
bit useConstantDwellDuringCranking;+If set to true, will use the specified duration for cranking dwell. If set to false, will use the specified dwell angle. Unless you have a really good reason to, leave this set to true to use duration mode.
|
bit useConstantDwellDuringCranking;+If set to true, will use the specified duration for cranking dwell. If set to false, will use the specified dwell angle. Unless you have a really good reason to, leave this set to true to use duration mode.
|
||||||
bit isEngineChartEnabled;+This options enables data for 'engine sniffer' tab in console, which comes at some CPU price
|
bit isEngineChartEnabled;+This options enables data for 'engine sniffer' tab in console, which comes at some CPU price
|
||||||
bit silentTriggerError
|
bit silentTriggerError;+Sometimes we have a performance issue while printing error
|
||||||
bit useLinearCltSensor
|
bit useLinearCltSensor
|
||||||
bit canReadEnabled
|
bit canReadEnabled
|
||||||
bit canWriteEnabled
|
bit canWriteEnabled
|
||||||
|
|
|
@ -1446,6 +1446,7 @@ cmd_set_engine_type_default = "w\x00\x31\x00\x00"
|
||||||
field = "Miata NB2 to (temporary)", miataNb2VVTRatioTo
|
field = "Miata NB2 to (temporary)", miataNb2VVTRatioTo
|
||||||
field = "nbVvtIndex", nbVvtIndex
|
field = "nbVvtIndex", nbVvtIndex
|
||||||
field = "print verbose sync details to console",verboseTriggerSynchDetails
|
field = "print verbose sync details to console",verboseTriggerSynchDetails
|
||||||
|
field = "Do not print messages in case of sync error", silentTriggerError
|
||||||
field = "Enable noise filtering", useNoiselessTriggerDecoder, {trigger_type == 8}
|
field = "Enable noise filtering", useNoiselessTriggerDecoder, {trigger_type == 8}
|
||||||
dialog = triggerConfiguration
|
dialog = triggerConfiguration
|
||||||
panel = triggerConfiguration_settings, North
|
panel = triggerConfiguration_settings, North
|
||||||
|
|
Loading…
Reference in New Issue