making magic constants a bit less fragile

This commit is contained in:
rusefi 2020-04-11 01:22:31 -04:00
parent 6b7958c7f0
commit 44ef63e102
4 changed files with 12 additions and 2 deletions

View File

@ -42,6 +42,11 @@ WaveChart waveChart;
trigger_central_s::trigger_central_s() : hwEventCounters() {
static_assert(TRIGGER_TYPE_60_2 == TT_TOOTHED_WHEEL_60_2, "One we will have one source of this magic constant");
static_assert(TRIGGER_TYPE_36_1 == TT_TOOTHED_WHEEL_36_1, "One we will have one source of this magic constant");
}
TriggerCentral::TriggerCentral() : trigger_central_s() {

View File

@ -73,6 +73,9 @@ struct_no_prefix engine_configuration_s
#define ETB_BIAS_CURVE_LENGTH 8
#define TRIGGER_TYPE_60_2 8
#define TRIGGER_TYPE_36_1 9
#define MAP_ANGLE_SIZE 8
#define MAP_WINDOW_SIZE 8

View File

@ -1569,7 +1569,7 @@ cmd_set_engine_type_default = "w\x00\x31\x00\x00"
field = "VVT display inverted", vvtDisplayInverted
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 || trigger_type == 9}
field = "Enable noise filtering", useNoiselessTriggerDecoder, {trigger_type == @@TRIGGER_TYPE_60_2@@ || trigger_type == 9}
dialog = triggerConfiguration
panel = triggerConfiguration_settings, North
panel = triggerConfiguration_IO, South

View File

@ -1,6 +1,6 @@
package com.rusefi.config.generated;
// this file was generated automatically by rusEfi tool ConfigDefinition.jar based on integration\rusefi_config.txt Fri Apr 10 17:27:25 EDT 2020
// this file was generated automatically by rusEfi tool ConfigDefinition.jar based on integration\rusefi_config.txt Sat Apr 11 01:15:22 EDT 2020
// by class com.rusefi.output.FileJavaFieldsConsumer
import com.rusefi.config.*;
@ -1292,6 +1292,8 @@ public class Fields {
public static final int trigger_todoRemoveMeOneDay0_offset_hex = 210;
public static final int trigger_todoRemoveMeOneDay1_offset = 528;
public static final int trigger_todoRemoveMeOneDay1_offset_hex = 210;
public static final int TRIGGER_TYPE_36_1 = 9;
public static final int TRIGGER_TYPE_60_2 = 8;
public static final int trigger_type_offset = 524;
public static final int trigger_unusedBit_4_10_offset = 528;
public static final int trigger_unusedBit_4_10_offset_hex = 210;