parent
fbf64e92c8
commit
1a1b7f95c0
|
@ -1,6 +1,6 @@
|
||||||
#include "global.h"
|
#include "global.h"
|
||||||
#include "rusefi_enums.h"
|
#include "rusefi_enums.h"
|
||||||
// was generated automatically by rusEFI tool from rusefi_enums.h // by enum2string.jar tool on Sat Aug 14 06:50:48 UTC 2021
|
// was generated automatically by rusEFI tool from rusefi_enums.h // by enum2string.jar tool on Tue Aug 31 05:42:43 EDT 2021
|
||||||
// see also gen_config_and_enums.bat
|
// see also gen_config_and_enums.bat
|
||||||
|
|
||||||
|
|
||||||
|
@ -1000,6 +1000,10 @@ case TT_SUBARU_7_WITHOUT_6:
|
||||||
return "TT_SUBARU_7_WITHOUT_6";
|
return "TT_SUBARU_7_WITHOUT_6";
|
||||||
case TT_SUBARU_SVX:
|
case TT_SUBARU_SVX:
|
||||||
return "TT_SUBARU_SVX";
|
return "TT_SUBARU_SVX";
|
||||||
|
case TT_SUBARU_SVX_CAM_VVT:
|
||||||
|
return "TT_SUBARU_SVX_CAM_VVT";
|
||||||
|
case TT_SUBARU_SVX_CRANK_1:
|
||||||
|
return "TT_SUBARU_SVX_CRANK_1";
|
||||||
case TT_TEMP_62:
|
case TT_TEMP_62:
|
||||||
return "TT_TEMP_62";
|
return "TT_TEMP_62";
|
||||||
case TT_TOOTHED_WHEEL:
|
case TT_TOOTHED_WHEEL:
|
||||||
|
|
|
@ -412,6 +412,9 @@ typedef enum {
|
||||||
|
|
||||||
TT_TEMP_62 = TT_TT_TEMP_62,
|
TT_TEMP_62 = TT_TT_TEMP_62,
|
||||||
|
|
||||||
|
TT_SUBARU_SVX_CRANK_1 = TT_TT_SUBARU_SVX_CRANK_1,
|
||||||
|
|
||||||
|
TT_SUBARU_SVX_CAM_VVT = TT_TT_SUBARU_SVX_CAM_VVT,
|
||||||
|
|
||||||
// do not forget to edit "#define trigger_type_e_enum" line in integration/rusefi_config.txt file to propogate new value to rusefi.ini TS project
|
// do not forget to edit "#define trigger_type_e_enum" line in integration/rusefi_config.txt file to propogate new value to rusefi.ini TS project
|
||||||
// do not forget to invoke "gen_config.bat" once you make changes to integration/rusefi_config.txt
|
// do not forget to invoke "gen_config.bat" once you make changes to integration/rusefi_config.txt
|
||||||
|
@ -419,7 +422,7 @@ typedef enum {
|
||||||
//
|
//
|
||||||
// Another point: once you add a new trigger, run get_trigger_images.bat which would run rusefi_test.exe from unit_tests
|
// Another point: once you add a new trigger, run get_trigger_images.bat which would run rusefi_test.exe from unit_tests
|
||||||
//
|
//
|
||||||
TT_UNUSED = 63, // this is used if we want to iterate over all trigger types
|
TT_UNUSED = 65, // this is used if we want to iterate over all trigger types
|
||||||
|
|
||||||
// todo: convert to ENUM_16_BITS? I can see 257 triggers but not 65K triggers
|
// todo: convert to ENUM_16_BITS? I can see 257 triggers but not 65K triggers
|
||||||
Force_4_bytes_size_trigger_type = ENUM_32_BITS,
|
Force_4_bytes_size_trigger_type = ENUM_32_BITS,
|
||||||
|
|
|
@ -739,6 +739,10 @@ void TriggerWaveform::initializeTriggerWaveform(operation_mode_e ambiguousOperat
|
||||||
initializeSubaru_SVX(this);
|
initializeSubaru_SVX(this);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case TT_SUBARU_SVX_CRANK_1:
|
||||||
|
|
||||||
|
case TT_SUBARU_SVX_CAM_VVT:
|
||||||
|
|
||||||
default:
|
default:
|
||||||
setShapeDefinitionError(true);
|
setShapeDefinitionError(true);
|
||||||
warning(CUSTOM_ERR_NO_SHAPE, "initializeTriggerWaveform() not implemented: %d", triggerConfig->type);
|
warning(CUSTOM_ERR_NO_SHAPE, "initializeTriggerWaveform() not implemented: %d", triggerConfig->type);
|
||||||
|
|
Loading…
Reference in New Issue