Auto-generated configs and docs

This commit is contained in:
GitHub gen-configs Action 2024-04-20 12:22:40 +00:00
parent 25b32924b9
commit 3f37d6a6a6
181 changed files with 2263 additions and 538 deletions

View File

@ -1,6 +1,6 @@
#include "global.h"
#include "rusefi_enums.h"
// was generated automatically by rusEFI tool from rusefi_enums.h // by enum_to_string.jar tool on Sat Apr 20 03:14:37 UTC 2024
// was generated automatically by rusEFI tool from rusefi_enums.h // by enum_to_string.jar tool on Sat Apr 20 12:21:12 UTC 2024
// see also gen_config_and_enums.bat
@ -51,6 +51,32 @@ case INJ_PolynomialAdder:
}
return NULL;
}
const char *getMsIoBoxId(MsIoBoxId value){
switch(value) {
case MsIoBoxId::ID200:
return "ID200";
case MsIoBoxId::ID220:
return "ID220";
case MsIoBoxId::ID240:
return "ID240";
case MsIoBoxId::OFF:
return "OFF";
}
return NULL;
}
const char *getMsIoBoxVss(MsIoBoxVss value){
switch(value) {
case MsIoBoxVss::ALL1234:
return "ALL1234";
case MsIoBoxVss::HALL34:
return "HALL34";
case MsIoBoxVss::OFF:
return "OFF";
case MsIoBoxVss::VR12:
return "VR12";
}
return NULL;
}
const char *getSelectedGear(SelectedGear value){
switch(value) {
case SelectedGear::Drive:

View File

@ -1,4 +1,4 @@
// was generated automatically by rusEFI tool from rusefi_enums.h // by enum_to_string.jar tool on Wed Jan 03 19:47:48 UTC 2024
// was generated automatically by rusEFI tool from rusefi_enums.h // by enum_to_string.jar tool on Sat Apr 20 12:21:12 UTC 2024
// see also gen_config_and_enums.bat
@ -16,6 +16,12 @@ const char *getInjectionTimingMode(InjectionTimingMode value);
#endif //__cplusplus
const char *getInjectorNonlinearMode(InjectorNonlinearMode value);
#if __cplusplus
const char *getMsIoBoxId(MsIoBoxId value);
#endif //__cplusplus
#if __cplusplus
const char *getMsIoBoxVss(MsIoBoxVss value);
#endif //__cplusplus
#if __cplusplus
const char *getSelectedGear(SelectedGear value);
#endif //__cplusplus
#if __cplusplus

View File

@ -1,4 +1,4 @@
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:30:31 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:21:28 UTC 2024
// by class com.rusefi.output.CHeaderConsumer
// begin
#pragma once
@ -121,6 +121,25 @@ struct pid_s {
};
static_assert(sizeof(pid_s) == 20);
// start of MsIoBox_config_s
struct MsIoBox_config_s {
/**
* offset 0
*/
MsIoBoxId id;
/**
* offset 1
*/
MsIoBoxVss vss;
/**
* need 4 byte alignment
* units: units
* offset 2
*/
uint8_t alignmentFill_at_2[2];
};
static_assert(sizeof(MsIoBox_config_s) == 4);
// start of cranking_parameters_s
struct cranking_parameters_s {
/**
@ -4533,10 +4552,14 @@ struct engine_configuration_s {
*/
float tcu_rangeSensorBiasResistor;
/**
* units: units
* offset 4016
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[204];
MsIoBox_config_s msIoBox0;
/**
* units: units
* offset 4020
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[200];
};
static_assert(sizeof(engine_configuration_s) == 4220);
@ -5603,4 +5626,4 @@ struct persistent_config_s {
static_assert(sizeof(persistent_config_s) == 22656);
// end
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:30:31 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:21:28 UTC 2024

View File

@ -1,4 +1,4 @@
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:30:40 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:21:37 UTC 2024
// by class com.rusefi.output.CHeaderConsumer
// begin
#pragma once
@ -121,6 +121,25 @@ struct pid_s {
};
static_assert(sizeof(pid_s) == 20);
// start of MsIoBox_config_s
struct MsIoBox_config_s {
/**
* offset 0
*/
MsIoBoxId id;
/**
* offset 1
*/
MsIoBoxVss vss;
/**
* need 4 byte alignment
* units: units
* offset 2
*/
uint8_t alignmentFill_at_2[2];
};
static_assert(sizeof(MsIoBox_config_s) == 4);
// start of cranking_parameters_s
struct cranking_parameters_s {
/**
@ -4533,10 +4552,14 @@ struct engine_configuration_s {
*/
float tcu_rangeSensorBiasResistor;
/**
* units: units
* offset 4016
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[204];
MsIoBox_config_s msIoBox0;
/**
* units: units
* offset 4020
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[200];
};
static_assert(sizeof(engine_configuration_s) == 4220);
@ -5603,4 +5626,4 @@ struct persistent_config_s {
static_assert(sizeof(persistent_config_s) == 22656);
// end
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:30:40 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:21:37 UTC 2024

View File

@ -1,4 +1,4 @@
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:30:39 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:21:36 UTC 2024
// by class com.rusefi.output.CHeaderConsumer
// begin
#pragma once
@ -121,6 +121,25 @@ struct pid_s {
};
static_assert(sizeof(pid_s) == 20);
// start of MsIoBox_config_s
struct MsIoBox_config_s {
/**
* offset 0
*/
MsIoBoxId id;
/**
* offset 1
*/
MsIoBoxVss vss;
/**
* need 4 byte alignment
* units: units
* offset 2
*/
uint8_t alignmentFill_at_2[2];
};
static_assert(sizeof(MsIoBox_config_s) == 4);
// start of cranking_parameters_s
struct cranking_parameters_s {
/**
@ -4533,10 +4552,14 @@ struct engine_configuration_s {
*/
float tcu_rangeSensorBiasResistor;
/**
* units: units
* offset 4016
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[204];
MsIoBox_config_s msIoBox0;
/**
* units: units
* offset 4020
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[200];
};
static_assert(sizeof(engine_configuration_s) == 4220);
@ -5603,4 +5626,4 @@ struct persistent_config_s {
static_assert(sizeof(persistent_config_s) == 22656);
// end
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:30:39 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:21:36 UTC 2024

View File

@ -1,4 +1,4 @@
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:30:49 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:21:45 UTC 2024
// by class com.rusefi.output.CHeaderConsumer
// begin
#pragma once
@ -121,6 +121,25 @@ struct pid_s {
};
static_assert(sizeof(pid_s) == 20);
// start of MsIoBox_config_s
struct MsIoBox_config_s {
/**
* offset 0
*/
MsIoBoxId id;
/**
* offset 1
*/
MsIoBoxVss vss;
/**
* need 4 byte alignment
* units: units
* offset 2
*/
uint8_t alignmentFill_at_2[2];
};
static_assert(sizeof(MsIoBox_config_s) == 4);
// start of cranking_parameters_s
struct cranking_parameters_s {
/**
@ -4533,10 +4552,14 @@ struct engine_configuration_s {
*/
float tcu_rangeSensorBiasResistor;
/**
* units: units
* offset 4016
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[204];
MsIoBox_config_s msIoBox0;
/**
* units: units
* offset 4020
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[200];
};
static_assert(sizeof(engine_configuration_s) == 4220);
@ -5603,4 +5626,4 @@ struct persistent_config_s {
static_assert(sizeof(persistent_config_s) == 22656);
// end
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:30:49 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:21:45 UTC 2024

View File

@ -1,4 +1,4 @@
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:30:54 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:21:51 UTC 2024
// by class com.rusefi.output.CHeaderConsumer
// begin
#pragma once
@ -121,6 +121,25 @@ struct pid_s {
};
static_assert(sizeof(pid_s) == 20);
// start of MsIoBox_config_s
struct MsIoBox_config_s {
/**
* offset 0
*/
MsIoBoxId id;
/**
* offset 1
*/
MsIoBoxVss vss;
/**
* need 4 byte alignment
* units: units
* offset 2
*/
uint8_t alignmentFill_at_2[2];
};
static_assert(sizeof(MsIoBox_config_s) == 4);
// start of cranking_parameters_s
struct cranking_parameters_s {
/**
@ -4533,10 +4552,14 @@ struct engine_configuration_s {
*/
float tcu_rangeSensorBiasResistor;
/**
* units: units
* offset 4032
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[204];
MsIoBox_config_s msIoBox0;
/**
* units: units
* offset 4036
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[200];
};
static_assert(sizeof(engine_configuration_s) == 4236);
@ -5603,4 +5626,4 @@ struct persistent_config_s {
static_assert(sizeof(persistent_config_s) == 22672);
// end
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:30:54 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:21:51 UTC 2024

View File

@ -1,4 +1,4 @@
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:30:56 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:21:52 UTC 2024
// by class com.rusefi.output.CHeaderConsumer
// begin
#pragma once
@ -121,6 +121,25 @@ struct pid_s {
};
static_assert(sizeof(pid_s) == 20);
// start of MsIoBox_config_s
struct MsIoBox_config_s {
/**
* offset 0
*/
MsIoBoxId id;
/**
* offset 1
*/
MsIoBoxVss vss;
/**
* need 4 byte alignment
* units: units
* offset 2
*/
uint8_t alignmentFill_at_2[2];
};
static_assert(sizeof(MsIoBox_config_s) == 4);
// start of cranking_parameters_s
struct cranking_parameters_s {
/**
@ -4533,10 +4552,14 @@ struct engine_configuration_s {
*/
float tcu_rangeSensorBiasResistor;
/**
* units: units
* offset 4032
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[204];
MsIoBox_config_s msIoBox0;
/**
* units: units
* offset 4036
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[200];
};
static_assert(sizeof(engine_configuration_s) == 4236);
@ -5603,4 +5626,4 @@ struct persistent_config_s {
static_assert(sizeof(persistent_config_s) == 22672);
// end
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:30:56 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:21:52 UTC 2024

View File

@ -1,4 +1,4 @@
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:31:35 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:22:32 UTC 2024
// by class com.rusefi.output.CHeaderConsumer
// begin
#pragma once
@ -121,6 +121,25 @@ struct pid_s {
};
static_assert(sizeof(pid_s) == 20);
// start of MsIoBox_config_s
struct MsIoBox_config_s {
/**
* offset 0
*/
MsIoBoxId id;
/**
* offset 1
*/
MsIoBoxVss vss;
/**
* need 4 byte alignment
* units: units
* offset 2
*/
uint8_t alignmentFill_at_2[2];
};
static_assert(sizeof(MsIoBox_config_s) == 4);
// start of cranking_parameters_s
struct cranking_parameters_s {
/**
@ -4533,10 +4552,14 @@ struct engine_configuration_s {
*/
float tcu_rangeSensorBiasResistor;
/**
* units: units
* offset 4016
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[204];
MsIoBox_config_s msIoBox0;
/**
* units: units
* offset 4020
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[200];
};
static_assert(sizeof(engine_configuration_s) == 4220);
@ -5603,4 +5626,4 @@ struct persistent_config_s {
static_assert(sizeof(persistent_config_s) == 22656);
// end
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:31:35 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:22:32 UTC 2024

View File

@ -1,4 +1,4 @@
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:31:34 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:22:31 UTC 2024
// by class com.rusefi.output.CHeaderConsumer
// begin
#pragma once
@ -121,6 +121,25 @@ struct pid_s {
};
static_assert(sizeof(pid_s) == 20);
// start of MsIoBox_config_s
struct MsIoBox_config_s {
/**
* offset 0
*/
MsIoBoxId id;
/**
* offset 1
*/
MsIoBoxVss vss;
/**
* need 4 byte alignment
* units: units
* offset 2
*/
uint8_t alignmentFill_at_2[2];
};
static_assert(sizeof(MsIoBox_config_s) == 4);
// start of cranking_parameters_s
struct cranking_parameters_s {
/**
@ -4533,10 +4552,14 @@ struct engine_configuration_s {
*/
float tcu_rangeSensorBiasResistor;
/**
* units: units
* offset 3856
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[204];
MsIoBox_config_s msIoBox0;
/**
* units: units
* offset 3860
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[200];
};
static_assert(sizeof(engine_configuration_s) == 4060);
@ -5603,4 +5626,4 @@ struct persistent_config_s {
static_assert(sizeof(persistent_config_s) == 22156);
// end
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:31:34 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:22:31 UTC 2024

View File

@ -1,4 +1,4 @@
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:31:28 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:22:25 UTC 2024
// by class com.rusefi.output.CHeaderConsumer
// begin
#pragma once
@ -121,6 +121,25 @@ struct pid_s {
};
static_assert(sizeof(pid_s) == 20);
// start of MsIoBox_config_s
struct MsIoBox_config_s {
/**
* offset 0
*/
MsIoBoxId id;
/**
* offset 1
*/
MsIoBoxVss vss;
/**
* need 4 byte alignment
* units: units
* offset 2
*/
uint8_t alignmentFill_at_2[2];
};
static_assert(sizeof(MsIoBox_config_s) == 4);
// start of cranking_parameters_s
struct cranking_parameters_s {
/**
@ -4533,10 +4552,14 @@ struct engine_configuration_s {
*/
float tcu_rangeSensorBiasResistor;
/**
* units: units
* offset 4016
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[204];
MsIoBox_config_s msIoBox0;
/**
* units: units
* offset 4020
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[200];
};
static_assert(sizeof(engine_configuration_s) == 4220);
@ -5603,4 +5626,4 @@ struct persistent_config_s {
static_assert(sizeof(persistent_config_s) == 22656);
// end
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:31:28 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:22:25 UTC 2024

View File

@ -1,4 +1,4 @@
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:31:37 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:22:34 UTC 2024
// by class com.rusefi.output.CHeaderConsumer
// begin
#pragma once
@ -121,6 +121,25 @@ struct pid_s {
};
static_assert(sizeof(pid_s) == 20);
// start of MsIoBox_config_s
struct MsIoBox_config_s {
/**
* offset 0
*/
MsIoBoxId id;
/**
* offset 1
*/
MsIoBoxVss vss;
/**
* need 4 byte alignment
* units: units
* offset 2
*/
uint8_t alignmentFill_at_2[2];
};
static_assert(sizeof(MsIoBox_config_s) == 4);
// start of cranking_parameters_s
struct cranking_parameters_s {
/**
@ -4533,10 +4552,14 @@ struct engine_configuration_s {
*/
float tcu_rangeSensorBiasResistor;
/**
* units: units
* offset 4016
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[204];
MsIoBox_config_s msIoBox0;
/**
* units: units
* offset 4020
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[200];
};
static_assert(sizeof(engine_configuration_s) == 4220);
@ -5603,4 +5626,4 @@ struct persistent_config_s {
static_assert(sizeof(persistent_config_s) == 22656);
// end
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:31:37 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:22:34 UTC 2024

View File

@ -1,4 +1,4 @@
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:31:27 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:22:24 UTC 2024
// by class com.rusefi.output.CHeaderConsumer
// begin
#pragma once
@ -121,6 +121,25 @@ struct pid_s {
};
static_assert(sizeof(pid_s) == 20);
// start of MsIoBox_config_s
struct MsIoBox_config_s {
/**
* offset 0
*/
MsIoBoxId id;
/**
* offset 1
*/
MsIoBoxVss vss;
/**
* need 4 byte alignment
* units: units
* offset 2
*/
uint8_t alignmentFill_at_2[2];
};
static_assert(sizeof(MsIoBox_config_s) == 4);
// start of cranking_parameters_s
struct cranking_parameters_s {
/**
@ -4533,10 +4552,14 @@ struct engine_configuration_s {
*/
float tcu_rangeSensorBiasResistor;
/**
* units: units
* offset 4016
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[204];
MsIoBox_config_s msIoBox0;
/**
* units: units
* offset 4020
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[200];
};
static_assert(sizeof(engine_configuration_s) == 4220);
@ -5603,4 +5626,4 @@ struct persistent_config_s {
static_assert(sizeof(persistent_config_s) == 22656);
// end
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:31:27 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:22:24 UTC 2024

View File

@ -1,4 +1,4 @@
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:30:22 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:21:18 UTC 2024
// by class com.rusefi.output.CHeaderConsumer
// begin
#pragma once
@ -121,6 +121,25 @@ struct pid_s {
};
static_assert(sizeof(pid_s) == 20);
// start of MsIoBox_config_s
struct MsIoBox_config_s {
/**
* offset 0
*/
MsIoBoxId id;
/**
* offset 1
*/
MsIoBoxVss vss;
/**
* need 4 byte alignment
* units: units
* offset 2
*/
uint8_t alignmentFill_at_2[2];
};
static_assert(sizeof(MsIoBox_config_s) == 4);
// start of cranking_parameters_s
struct cranking_parameters_s {
/**
@ -4533,10 +4552,14 @@ struct engine_configuration_s {
*/
float tcu_rangeSensorBiasResistor;
/**
* units: units
* offset 4016
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[204];
MsIoBox_config_s msIoBox0;
/**
* units: units
* offset 4020
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[200];
};
static_assert(sizeof(engine_configuration_s) == 4220);
@ -5603,4 +5626,4 @@ struct persistent_config_s {
static_assert(sizeof(persistent_config_s) == 22656);
// end
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:30:22 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:21:18 UTC 2024

View File

@ -1,4 +1,4 @@
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:31:21 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:22:19 UTC 2024
// by class com.rusefi.output.CHeaderConsumer
// begin
#pragma once
@ -121,6 +121,25 @@ struct pid_s {
};
static_assert(sizeof(pid_s) == 20);
// start of MsIoBox_config_s
struct MsIoBox_config_s {
/**
* offset 0
*/
MsIoBoxId id;
/**
* offset 1
*/
MsIoBoxVss vss;
/**
* need 4 byte alignment
* units: units
* offset 2
*/
uint8_t alignmentFill_at_2[2];
};
static_assert(sizeof(MsIoBox_config_s) == 4);
// start of cranking_parameters_s
struct cranking_parameters_s {
/**
@ -4533,10 +4552,14 @@ struct engine_configuration_s {
*/
float tcu_rangeSensorBiasResistor;
/**
* units: units
* offset 4016
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[204];
MsIoBox_config_s msIoBox0;
/**
* units: units
* offset 4020
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[200];
};
static_assert(sizeof(engine_configuration_s) == 4220);
@ -5603,4 +5626,4 @@ struct persistent_config_s {
static_assert(sizeof(persistent_config_s) == 22656);
// end
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:31:21 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:22:19 UTC 2024

View File

@ -1,4 +1,4 @@
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:30:28 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:21:25 UTC 2024
// by class com.rusefi.output.CHeaderConsumer
// begin
#pragma once
@ -121,6 +121,25 @@ struct pid_s {
};
static_assert(sizeof(pid_s) == 20);
// start of MsIoBox_config_s
struct MsIoBox_config_s {
/**
* offset 0
*/
MsIoBoxId id;
/**
* offset 1
*/
MsIoBoxVss vss;
/**
* need 4 byte alignment
* units: units
* offset 2
*/
uint8_t alignmentFill_at_2[2];
};
static_assert(sizeof(MsIoBox_config_s) == 4);
// start of cranking_parameters_s
struct cranking_parameters_s {
/**
@ -4533,10 +4552,14 @@ struct engine_configuration_s {
*/
float tcu_rangeSensorBiasResistor;
/**
* units: units
* offset 4016
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[204];
MsIoBox_config_s msIoBox0;
/**
* units: units
* offset 4020
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[200];
};
static_assert(sizeof(engine_configuration_s) == 4220);
@ -5603,4 +5626,4 @@ struct persistent_config_s {
static_assert(sizeof(persistent_config_s) == 22656);
// end
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:30:28 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:21:25 UTC 2024

View File

@ -1,4 +1,4 @@
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:30:32 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:21:29 UTC 2024
// by class com.rusefi.output.CHeaderConsumer
// begin
#pragma once
@ -121,6 +121,25 @@ struct pid_s {
};
static_assert(sizeof(pid_s) == 20);
// start of MsIoBox_config_s
struct MsIoBox_config_s {
/**
* offset 0
*/
MsIoBoxId id;
/**
* offset 1
*/
MsIoBoxVss vss;
/**
* need 4 byte alignment
* units: units
* offset 2
*/
uint8_t alignmentFill_at_2[2];
};
static_assert(sizeof(MsIoBox_config_s) == 4);
// start of cranking_parameters_s
struct cranking_parameters_s {
/**
@ -4533,10 +4552,14 @@ struct engine_configuration_s {
*/
float tcu_rangeSensorBiasResistor;
/**
* units: units
* offset 4016
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[204];
MsIoBox_config_s msIoBox0;
/**
* units: units
* offset 4020
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[200];
};
static_assert(sizeof(engine_configuration_s) == 4220);
@ -5603,4 +5626,4 @@ struct persistent_config_s {
static_assert(sizeof(persistent_config_s) == 22656);
// end
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:30:32 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:21:29 UTC 2024

View File

@ -1,4 +1,4 @@
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:30:50 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:21:47 UTC 2024
// by class com.rusefi.output.CHeaderConsumer
// begin
#pragma once
@ -121,6 +121,25 @@ struct pid_s {
};
static_assert(sizeof(pid_s) == 20);
// start of MsIoBox_config_s
struct MsIoBox_config_s {
/**
* offset 0
*/
MsIoBoxId id;
/**
* offset 1
*/
MsIoBoxVss vss;
/**
* need 4 byte alignment
* units: units
* offset 2
*/
uint8_t alignmentFill_at_2[2];
};
static_assert(sizeof(MsIoBox_config_s) == 4);
// start of cranking_parameters_s
struct cranking_parameters_s {
/**
@ -4533,10 +4552,14 @@ struct engine_configuration_s {
*/
float tcu_rangeSensorBiasResistor;
/**
* units: units
* offset 4016
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[204];
MsIoBox_config_s msIoBox0;
/**
* units: units
* offset 4020
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[200];
};
static_assert(sizeof(engine_configuration_s) == 4220);
@ -5603,4 +5626,4 @@ struct persistent_config_s {
static_assert(sizeof(persistent_config_s) == 23328);
// end
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:30:50 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:21:47 UTC 2024

View File

@ -1,4 +1,4 @@
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:30:47 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:21:44 UTC 2024
// by class com.rusefi.output.CHeaderConsumer
// begin
#pragma once
@ -121,6 +121,25 @@ struct pid_s {
};
static_assert(sizeof(pid_s) == 20);
// start of MsIoBox_config_s
struct MsIoBox_config_s {
/**
* offset 0
*/
MsIoBoxId id;
/**
* offset 1
*/
MsIoBoxVss vss;
/**
* need 4 byte alignment
* units: units
* offset 2
*/
uint8_t alignmentFill_at_2[2];
};
static_assert(sizeof(MsIoBox_config_s) == 4);
// start of cranking_parameters_s
struct cranking_parameters_s {
/**
@ -4533,10 +4552,14 @@ struct engine_configuration_s {
*/
float tcu_rangeSensorBiasResistor;
/**
* units: units
* offset 4016
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[204];
MsIoBox_config_s msIoBox0;
/**
* units: units
* offset 4020
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[200];
};
static_assert(sizeof(engine_configuration_s) == 4220);
@ -5603,4 +5626,4 @@ struct persistent_config_s {
static_assert(sizeof(persistent_config_s) == 22656);
// end
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:30:47 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:21:44 UTC 2024

View File

@ -1,4 +1,4 @@
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:30:42 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:21:39 UTC 2024
// by class com.rusefi.output.CHeaderConsumer
// begin
#pragma once
@ -121,6 +121,25 @@ struct pid_s {
};
static_assert(sizeof(pid_s) == 20);
// start of MsIoBox_config_s
struct MsIoBox_config_s {
/**
* offset 0
*/
MsIoBoxId id;
/**
* offset 1
*/
MsIoBoxVss vss;
/**
* need 4 byte alignment
* units: units
* offset 2
*/
uint8_t alignmentFill_at_2[2];
};
static_assert(sizeof(MsIoBox_config_s) == 4);
// start of cranking_parameters_s
struct cranking_parameters_s {
/**
@ -4533,10 +4552,14 @@ struct engine_configuration_s {
*/
float tcu_rangeSensorBiasResistor;
/**
* units: units
* offset 4016
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[204];
MsIoBox_config_s msIoBox0;
/**
* units: units
* offset 4020
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[200];
};
static_assert(sizeof(engine_configuration_s) == 4220);
@ -5603,4 +5626,4 @@ struct persistent_config_s {
static_assert(sizeof(persistent_config_s) == 22656);
// end
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:30:42 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:21:39 UTC 2024

View File

@ -1,4 +1,4 @@
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:30:27 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:21:24 UTC 2024
// by class com.rusefi.output.CHeaderConsumer
// begin
#pragma once
@ -121,6 +121,25 @@ struct pid_s {
};
static_assert(sizeof(pid_s) == 20);
// start of MsIoBox_config_s
struct MsIoBox_config_s {
/**
* offset 0
*/
MsIoBoxId id;
/**
* offset 1
*/
MsIoBoxVss vss;
/**
* need 4 byte alignment
* units: units
* offset 2
*/
uint8_t alignmentFill_at_2[2];
};
static_assert(sizeof(MsIoBox_config_s) == 4);
// start of cranking_parameters_s
struct cranking_parameters_s {
/**
@ -4533,10 +4552,14 @@ struct engine_configuration_s {
*/
float tcu_rangeSensorBiasResistor;
/**
* units: units
* offset 4016
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[204];
MsIoBox_config_s msIoBox0;
/**
* units: units
* offset 4020
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[200];
};
static_assert(sizeof(engine_configuration_s) == 4220);
@ -5603,4 +5626,4 @@ struct persistent_config_s {
static_assert(sizeof(persistent_config_s) == 22656);
// end
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:30:27 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:21:24 UTC 2024

View File

@ -1,4 +1,4 @@
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:30:53 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:21:49 UTC 2024
// by class com.rusefi.output.CHeaderConsumer
// begin
#pragma once
@ -121,6 +121,25 @@ struct pid_s {
};
static_assert(sizeof(pid_s) == 20);
// start of MsIoBox_config_s
struct MsIoBox_config_s {
/**
* offset 0
*/
MsIoBoxId id;
/**
* offset 1
*/
MsIoBoxVss vss;
/**
* need 4 byte alignment
* units: units
* offset 2
*/
uint8_t alignmentFill_at_2[2];
};
static_assert(sizeof(MsIoBox_config_s) == 4);
// start of cranking_parameters_s
struct cranking_parameters_s {
/**
@ -4533,10 +4552,14 @@ struct engine_configuration_s {
*/
float tcu_rangeSensorBiasResistor;
/**
* units: units
* offset 4016
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[204];
MsIoBox_config_s msIoBox0;
/**
* units: units
* offset 4020
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[200];
};
static_assert(sizeof(engine_configuration_s) == 4220);
@ -5603,4 +5626,4 @@ struct persistent_config_s {
static_assert(sizeof(persistent_config_s) == 22656);
// end
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:30:53 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:21:49 UTC 2024

View File

@ -1,4 +1,4 @@
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:31:00 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:21:56 UTC 2024
// by class com.rusefi.output.CHeaderConsumer
// begin
#pragma once
@ -121,6 +121,25 @@ struct pid_s {
};
static_assert(sizeof(pid_s) == 20);
// start of MsIoBox_config_s
struct MsIoBox_config_s {
/**
* offset 0
*/
MsIoBoxId id;
/**
* offset 1
*/
MsIoBoxVss vss;
/**
* need 4 byte alignment
* units: units
* offset 2
*/
uint8_t alignmentFill_at_2[2];
};
static_assert(sizeof(MsIoBox_config_s) == 4);
// start of cranking_parameters_s
struct cranking_parameters_s {
/**
@ -4533,10 +4552,14 @@ struct engine_configuration_s {
*/
float tcu_rangeSensorBiasResistor;
/**
* units: units
* offset 4016
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[204];
MsIoBox_config_s msIoBox0;
/**
* units: units
* offset 4020
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[200];
};
static_assert(sizeof(engine_configuration_s) == 4220);
@ -5603,4 +5626,4 @@ struct persistent_config_s {
static_assert(sizeof(persistent_config_s) == 22656);
// end
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:31:00 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:21:56 UTC 2024

View File

@ -1,4 +1,4 @@
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:30:46 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:21:43 UTC 2024
// by class com.rusefi.output.CHeaderConsumer
// begin
#pragma once
@ -121,6 +121,25 @@ struct pid_s {
};
static_assert(sizeof(pid_s) == 20);
// start of MsIoBox_config_s
struct MsIoBox_config_s {
/**
* offset 0
*/
MsIoBoxId id;
/**
* offset 1
*/
MsIoBoxVss vss;
/**
* need 4 byte alignment
* units: units
* offset 2
*/
uint8_t alignmentFill_at_2[2];
};
static_assert(sizeof(MsIoBox_config_s) == 4);
// start of cranking_parameters_s
struct cranking_parameters_s {
/**
@ -4533,10 +4552,14 @@ struct engine_configuration_s {
*/
float tcu_rangeSensorBiasResistor;
/**
* units: units
* offset 4016
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[204];
MsIoBox_config_s msIoBox0;
/**
* units: units
* offset 4020
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[200];
};
static_assert(sizeof(engine_configuration_s) == 4220);
@ -5603,4 +5626,4 @@ struct persistent_config_s {
static_assert(sizeof(persistent_config_s) == 22656);
// end
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:30:46 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:21:43 UTC 2024

View File

@ -1,4 +1,4 @@
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:30:38 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:21:35 UTC 2024
// by class com.rusefi.output.CHeaderConsumer
// begin
#pragma once
@ -121,6 +121,25 @@ struct pid_s {
};
static_assert(sizeof(pid_s) == 20);
// start of MsIoBox_config_s
struct MsIoBox_config_s {
/**
* offset 0
*/
MsIoBoxId id;
/**
* offset 1
*/
MsIoBoxVss vss;
/**
* need 4 byte alignment
* units: units
* offset 2
*/
uint8_t alignmentFill_at_2[2];
};
static_assert(sizeof(MsIoBox_config_s) == 4);
// start of cranking_parameters_s
struct cranking_parameters_s {
/**
@ -4533,10 +4552,14 @@ struct engine_configuration_s {
*/
float tcu_rangeSensorBiasResistor;
/**
* units: units
* offset 4016
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[204];
MsIoBox_config_s msIoBox0;
/**
* units: units
* offset 4020
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[200];
};
static_assert(sizeof(engine_configuration_s) == 4220);
@ -5603,4 +5626,4 @@ struct persistent_config_s {
static_assert(sizeof(persistent_config_s) == 22656);
// end
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:30:38 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:21:35 UTC 2024

View File

@ -1,4 +1,4 @@
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:31:02 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:21:59 UTC 2024
// by class com.rusefi.output.CHeaderConsumer
// begin
#pragma once
@ -121,6 +121,25 @@ struct pid_s {
};
static_assert(sizeof(pid_s) == 20);
// start of MsIoBox_config_s
struct MsIoBox_config_s {
/**
* offset 0
*/
MsIoBoxId id;
/**
* offset 1
*/
MsIoBoxVss vss;
/**
* need 4 byte alignment
* units: units
* offset 2
*/
uint8_t alignmentFill_at_2[2];
};
static_assert(sizeof(MsIoBox_config_s) == 4);
// start of cranking_parameters_s
struct cranking_parameters_s {
/**
@ -4533,10 +4552,14 @@ struct engine_configuration_s {
*/
float tcu_rangeSensorBiasResistor;
/**
* units: units
* offset 4016
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[204];
MsIoBox_config_s msIoBox0;
/**
* units: units
* offset 4020
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[200];
};
static_assert(sizeof(engine_configuration_s) == 4220);
@ -5603,4 +5626,4 @@ struct persistent_config_s {
static_assert(sizeof(persistent_config_s) == 22656);
// end
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:31:02 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:21:59 UTC 2024

View File

@ -1,4 +1,4 @@
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:30:34 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:21:30 UTC 2024
// by class com.rusefi.output.CHeaderConsumer
// begin
#pragma once
@ -121,6 +121,25 @@ struct pid_s {
};
static_assert(sizeof(pid_s) == 20);
// start of MsIoBox_config_s
struct MsIoBox_config_s {
/**
* offset 0
*/
MsIoBoxId id;
/**
* offset 1
*/
MsIoBoxVss vss;
/**
* need 4 byte alignment
* units: units
* offset 2
*/
uint8_t alignmentFill_at_2[2];
};
static_assert(sizeof(MsIoBox_config_s) == 4);
// start of cranking_parameters_s
struct cranking_parameters_s {
/**
@ -4533,10 +4552,14 @@ struct engine_configuration_s {
*/
float tcu_rangeSensorBiasResistor;
/**
* units: units
* offset 4016
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[204];
MsIoBox_config_s msIoBox0;
/**
* units: units
* offset 4020
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[200];
};
static_assert(sizeof(engine_configuration_s) == 4220);
@ -5603,4 +5626,4 @@ struct persistent_config_s {
static_assert(sizeof(persistent_config_s) == 22656);
// end
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:30:34 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:21:30 UTC 2024

View File

@ -1,4 +1,4 @@
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:31:01 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:21:58 UTC 2024
// by class com.rusefi.output.CHeaderConsumer
// begin
#pragma once
@ -121,6 +121,25 @@ struct pid_s {
};
static_assert(sizeof(pid_s) == 20);
// start of MsIoBox_config_s
struct MsIoBox_config_s {
/**
* offset 0
*/
MsIoBoxId id;
/**
* offset 1
*/
MsIoBoxVss vss;
/**
* need 4 byte alignment
* units: units
* offset 2
*/
uint8_t alignmentFill_at_2[2];
};
static_assert(sizeof(MsIoBox_config_s) == 4);
// start of cranking_parameters_s
struct cranking_parameters_s {
/**
@ -4533,10 +4552,14 @@ struct engine_configuration_s {
*/
float tcu_rangeSensorBiasResistor;
/**
* units: units
* offset 4016
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[204];
MsIoBox_config_s msIoBox0;
/**
* units: units
* offset 4020
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[200];
};
static_assert(sizeof(engine_configuration_s) == 4220);
@ -5603,4 +5626,4 @@ struct persistent_config_s {
static_assert(sizeof(persistent_config_s) == 22656);
// end
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:31:01 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:21:58 UTC 2024

View File

@ -1,4 +1,4 @@
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:30:36 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:21:33 UTC 2024
// by class com.rusefi.output.CHeaderConsumer
// begin
#pragma once
@ -121,6 +121,25 @@ struct pid_s {
};
static_assert(sizeof(pid_s) == 20);
// start of MsIoBox_config_s
struct MsIoBox_config_s {
/**
* offset 0
*/
MsIoBoxId id;
/**
* offset 1
*/
MsIoBoxVss vss;
/**
* need 4 byte alignment
* units: units
* offset 2
*/
uint8_t alignmentFill_at_2[2];
};
static_assert(sizeof(MsIoBox_config_s) == 4);
// start of cranking_parameters_s
struct cranking_parameters_s {
/**
@ -4533,10 +4552,14 @@ struct engine_configuration_s {
*/
float tcu_rangeSensorBiasResistor;
/**
* units: units
* offset 4016
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[204];
MsIoBox_config_s msIoBox0;
/**
* units: units
* offset 4020
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[200];
};
static_assert(sizeof(engine_configuration_s) == 4220);
@ -5603,4 +5626,4 @@ struct persistent_config_s {
static_assert(sizeof(persistent_config_s) == 22656);
// end
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:30:36 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:21:33 UTC 2024

View File

@ -1,4 +1,4 @@
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:31:24 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:22:21 UTC 2024
// by class com.rusefi.output.CHeaderConsumer
// begin
#pragma once
@ -121,6 +121,25 @@ struct pid_s {
};
static_assert(sizeof(pid_s) == 20);
// start of MsIoBox_config_s
struct MsIoBox_config_s {
/**
* offset 0
*/
MsIoBoxId id;
/**
* offset 1
*/
MsIoBoxVss vss;
/**
* need 4 byte alignment
* units: units
* offset 2
*/
uint8_t alignmentFill_at_2[2];
};
static_assert(sizeof(MsIoBox_config_s) == 4);
// start of cranking_parameters_s
struct cranking_parameters_s {
/**
@ -4533,10 +4552,14 @@ struct engine_configuration_s {
*/
float tcu_rangeSensorBiasResistor;
/**
* units: units
* offset 4016
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[204];
MsIoBox_config_s msIoBox0;
/**
* units: units
* offset 4020
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[200];
};
static_assert(sizeof(engine_configuration_s) == 4220);
@ -5603,4 +5626,4 @@ struct persistent_config_s {
static_assert(sizeof(persistent_config_s) == 22656);
// end
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:31:24 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:22:21 UTC 2024

View File

@ -1,4 +1,4 @@
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:30:23 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:21:19 UTC 2024
// by class com.rusefi.output.CHeaderConsumer
// begin
#pragma once
@ -121,6 +121,25 @@ struct pid_s {
};
static_assert(sizeof(pid_s) == 20);
// start of MsIoBox_config_s
struct MsIoBox_config_s {
/**
* offset 0
*/
MsIoBoxId id;
/**
* offset 1
*/
MsIoBoxVss vss;
/**
* need 4 byte alignment
* units: units
* offset 2
*/
uint8_t alignmentFill_at_2[2];
};
static_assert(sizeof(MsIoBox_config_s) == 4);
// start of cranking_parameters_s
struct cranking_parameters_s {
/**
@ -4533,10 +4552,14 @@ struct engine_configuration_s {
*/
float tcu_rangeSensorBiasResistor;
/**
* units: units
* offset 4016
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[204];
MsIoBox_config_s msIoBox0;
/**
* units: units
* offset 4020
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[200];
};
static_assert(sizeof(engine_configuration_s) == 4220);
@ -5603,4 +5626,4 @@ struct persistent_config_s {
static_assert(sizeof(persistent_config_s) == 22656);
// end
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:30:23 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:21:19 UTC 2024

View File

@ -1,4 +1,4 @@
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:30:24 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:21:21 UTC 2024
// by class com.rusefi.output.CHeaderConsumer
// begin
#pragma once
@ -121,6 +121,25 @@ struct pid_s {
};
static_assert(sizeof(pid_s) == 20);
// start of MsIoBox_config_s
struct MsIoBox_config_s {
/**
* offset 0
*/
MsIoBoxId id;
/**
* offset 1
*/
MsIoBoxVss vss;
/**
* need 4 byte alignment
* units: units
* offset 2
*/
uint8_t alignmentFill_at_2[2];
};
static_assert(sizeof(MsIoBox_config_s) == 4);
// start of cranking_parameters_s
struct cranking_parameters_s {
/**
@ -4533,10 +4552,14 @@ struct engine_configuration_s {
*/
float tcu_rangeSensorBiasResistor;
/**
* units: units
* offset 4016
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[204];
MsIoBox_config_s msIoBox0;
/**
* units: units
* offset 4020
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[200];
};
static_assert(sizeof(engine_configuration_s) == 4220);
@ -5603,4 +5626,4 @@ struct persistent_config_s {
static_assert(sizeof(persistent_config_s) == 22656);
// end
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:30:24 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:21:21 UTC 2024

View File

@ -1,4 +1,4 @@
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:30:26 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:21:22 UTC 2024
// by class com.rusefi.output.CHeaderConsumer
// begin
#pragma once
@ -121,6 +121,25 @@ struct pid_s {
};
static_assert(sizeof(pid_s) == 20);
// start of MsIoBox_config_s
struct MsIoBox_config_s {
/**
* offset 0
*/
MsIoBoxId id;
/**
* offset 1
*/
MsIoBoxVss vss;
/**
* need 4 byte alignment
* units: units
* offset 2
*/
uint8_t alignmentFill_at_2[2];
};
static_assert(sizeof(MsIoBox_config_s) == 4);
// start of cranking_parameters_s
struct cranking_parameters_s {
/**
@ -4533,10 +4552,14 @@ struct engine_configuration_s {
*/
float tcu_rangeSensorBiasResistor;
/**
* units: units
* offset 4016
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[204];
MsIoBox_config_s msIoBox0;
/**
* units: units
* offset 4020
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[200];
};
static_assert(sizeof(engine_configuration_s) == 4220);
@ -5603,4 +5626,4 @@ struct persistent_config_s {
static_assert(sizeof(persistent_config_s) == 22656);
// end
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:30:26 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:21:22 UTC 2024

View File

@ -1,4 +1,4 @@
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:31:30 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:22:27 UTC 2024
// by class com.rusefi.output.CHeaderConsumer
// begin
#pragma once
@ -121,6 +121,25 @@ struct pid_s {
};
static_assert(sizeof(pid_s) == 20);
// start of MsIoBox_config_s
struct MsIoBox_config_s {
/**
* offset 0
*/
MsIoBoxId id;
/**
* offset 1
*/
MsIoBoxVss vss;
/**
* need 4 byte alignment
* units: units
* offset 2
*/
uint8_t alignmentFill_at_2[2];
};
static_assert(sizeof(MsIoBox_config_s) == 4);
// start of cranking_parameters_s
struct cranking_parameters_s {
/**
@ -4533,10 +4552,14 @@ struct engine_configuration_s {
*/
float tcu_rangeSensorBiasResistor;
/**
* units: units
* offset 4016
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[204];
MsIoBox_config_s msIoBox0;
/**
* units: units
* offset 4020
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[200];
};
static_assert(sizeof(engine_configuration_s) == 4220);
@ -5603,4 +5626,4 @@ struct persistent_config_s {
static_assert(sizeof(persistent_config_s) == 22656);
// end
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:31:30 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:22:27 UTC 2024

View File

@ -1,4 +1,4 @@
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:31:32 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:22:29 UTC 2024
// by class com.rusefi.output.CHeaderConsumer
// begin
#pragma once
@ -121,6 +121,25 @@ struct pid_s {
};
static_assert(sizeof(pid_s) == 20);
// start of MsIoBox_config_s
struct MsIoBox_config_s {
/**
* offset 0
*/
MsIoBoxId id;
/**
* offset 1
*/
MsIoBoxVss vss;
/**
* need 4 byte alignment
* units: units
* offset 2
*/
uint8_t alignmentFill_at_2[2];
};
static_assert(sizeof(MsIoBox_config_s) == 4);
// start of cranking_parameters_s
struct cranking_parameters_s {
/**
@ -4533,10 +4552,14 @@ struct engine_configuration_s {
*/
float tcu_rangeSensorBiasResistor;
/**
* units: units
* offset 4016
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[204];
MsIoBox_config_s msIoBox0;
/**
* units: units
* offset 4020
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[200];
};
static_assert(sizeof(engine_configuration_s) == 4220);
@ -5603,4 +5626,4 @@ struct persistent_config_s {
static_assert(sizeof(persistent_config_s) == 22656);
// end
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:31:32 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:22:29 UTC 2024

View File

@ -1,4 +1,4 @@
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:31:11 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:22:08 UTC 2024
// by class com.rusefi.output.CHeaderConsumer
// begin
#pragma once
@ -121,6 +121,25 @@ struct pid_s {
};
static_assert(sizeof(pid_s) == 20);
// start of MsIoBox_config_s
struct MsIoBox_config_s {
/**
* offset 0
*/
MsIoBoxId id;
/**
* offset 1
*/
MsIoBoxVss vss;
/**
* need 4 byte alignment
* units: units
* offset 2
*/
uint8_t alignmentFill_at_2[2];
};
static_assert(sizeof(MsIoBox_config_s) == 4);
// start of cranking_parameters_s
struct cranking_parameters_s {
/**
@ -4533,10 +4552,14 @@ struct engine_configuration_s {
*/
float tcu_rangeSensorBiasResistor;
/**
* units: units
* offset 4016
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[204];
MsIoBox_config_s msIoBox0;
/**
* units: units
* offset 4020
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[200];
};
static_assert(sizeof(engine_configuration_s) == 4220);
@ -5603,4 +5626,4 @@ struct persistent_config_s {
static_assert(sizeof(persistent_config_s) == 28156);
// end
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:31:11 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:22:08 UTC 2024

View File

@ -1,4 +1,4 @@
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:31:05 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:22:02 UTC 2024
// by class com.rusefi.output.CHeaderConsumer
// begin
#pragma once
@ -121,6 +121,25 @@ struct pid_s {
};
static_assert(sizeof(pid_s) == 20);
// start of MsIoBox_config_s
struct MsIoBox_config_s {
/**
* offset 0
*/
MsIoBoxId id;
/**
* offset 1
*/
MsIoBoxVss vss;
/**
* need 4 byte alignment
* units: units
* offset 2
*/
uint8_t alignmentFill_at_2[2];
};
static_assert(sizeof(MsIoBox_config_s) == 4);
// start of cranking_parameters_s
struct cranking_parameters_s {
/**
@ -4533,10 +4552,14 @@ struct engine_configuration_s {
*/
float tcu_rangeSensorBiasResistor;
/**
* units: units
* offset 4016
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[204];
MsIoBox_config_s msIoBox0;
/**
* units: units
* offset 4020
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[200];
};
static_assert(sizeof(engine_configuration_s) == 4220);
@ -5603,4 +5626,4 @@ struct persistent_config_s {
static_assert(sizeof(persistent_config_s) == 28156);
// end
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:31:05 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:22:02 UTC 2024

View File

@ -1,4 +1,4 @@
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:31:04 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:22:01 UTC 2024
// by class com.rusefi.output.CHeaderConsumer
// begin
#pragma once
@ -121,6 +121,25 @@ struct pid_s {
};
static_assert(sizeof(pid_s) == 20);
// start of MsIoBox_config_s
struct MsIoBox_config_s {
/**
* offset 0
*/
MsIoBoxId id;
/**
* offset 1
*/
MsIoBoxVss vss;
/**
* need 4 byte alignment
* units: units
* offset 2
*/
uint8_t alignmentFill_at_2[2];
};
static_assert(sizeof(MsIoBox_config_s) == 4);
// start of cranking_parameters_s
struct cranking_parameters_s {
/**
@ -4533,10 +4552,14 @@ struct engine_configuration_s {
*/
float tcu_rangeSensorBiasResistor;
/**
* units: units
* offset 4016
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[204];
MsIoBox_config_s msIoBox0;
/**
* units: units
* offset 4020
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[200];
};
static_assert(sizeof(engine_configuration_s) == 4220);
@ -5603,4 +5626,4 @@ struct persistent_config_s {
static_assert(sizeof(persistent_config_s) == 28156);
// end
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:31:04 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:22:01 UTC 2024

View File

@ -1,4 +1,4 @@
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:31:38 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:22:35 UTC 2024
// by class com.rusefi.output.CHeaderConsumer
// begin
#pragma once
@ -121,6 +121,25 @@ struct pid_s {
};
static_assert(sizeof(pid_s) == 20);
// start of MsIoBox_config_s
struct MsIoBox_config_s {
/**
* offset 0
*/
MsIoBoxId id;
/**
* offset 1
*/
MsIoBoxVss vss;
/**
* need 4 byte alignment
* units: units
* offset 2
*/
uint8_t alignmentFill_at_2[2];
};
static_assert(sizeof(MsIoBox_config_s) == 4);
// start of cranking_parameters_s
struct cranking_parameters_s {
/**
@ -4533,10 +4552,14 @@ struct engine_configuration_s {
*/
float tcu_rangeSensorBiasResistor;
/**
* units: units
* offset 4016
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[204];
MsIoBox_config_s msIoBox0;
/**
* units: units
* offset 4020
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[200];
};
static_assert(sizeof(engine_configuration_s) == 4220);
@ -5603,4 +5626,4 @@ struct persistent_config_s {
static_assert(sizeof(persistent_config_s) == 22656);
// end
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:31:38 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:22:35 UTC 2024

View File

@ -1,4 +1,4 @@
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:30:43 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:21:40 UTC 2024
// by class com.rusefi.output.CHeaderConsumer
// begin
#pragma once
@ -121,6 +121,25 @@ struct pid_s {
};
static_assert(sizeof(pid_s) == 20);
// start of MsIoBox_config_s
struct MsIoBox_config_s {
/**
* offset 0
*/
MsIoBoxId id;
/**
* offset 1
*/
MsIoBoxVss vss;
/**
* need 4 byte alignment
* units: units
* offset 2
*/
uint8_t alignmentFill_at_2[2];
};
static_assert(sizeof(MsIoBox_config_s) == 4);
// start of cranking_parameters_s
struct cranking_parameters_s {
/**
@ -4533,10 +4552,14 @@ struct engine_configuration_s {
*/
float tcu_rangeSensorBiasResistor;
/**
* units: units
* offset 4016
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[204];
MsIoBox_config_s msIoBox0;
/**
* units: units
* offset 4020
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[200];
};
static_assert(sizeof(engine_configuration_s) == 4220);
@ -5603,4 +5626,4 @@ struct persistent_config_s {
static_assert(sizeof(persistent_config_s) == 22656);
// end
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:30:43 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:21:40 UTC 2024

View File

@ -1,4 +1,4 @@
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:31:33 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:22:30 UTC 2024
// by class com.rusefi.output.CHeaderConsumer
// begin
#pragma once
@ -121,6 +121,25 @@ struct pid_s {
};
static_assert(sizeof(pid_s) == 20);
// start of MsIoBox_config_s
struct MsIoBox_config_s {
/**
* offset 0
*/
MsIoBoxId id;
/**
* offset 1
*/
MsIoBoxVss vss;
/**
* need 4 byte alignment
* units: units
* offset 2
*/
uint8_t alignmentFill_at_2[2];
};
static_assert(sizeof(MsIoBox_config_s) == 4);
// start of cranking_parameters_s
struct cranking_parameters_s {
/**
@ -4533,10 +4552,14 @@ struct engine_configuration_s {
*/
float tcu_rangeSensorBiasResistor;
/**
* units: units
* offset 4016
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[204];
MsIoBox_config_s msIoBox0;
/**
* units: units
* offset 4020
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[200];
};
static_assert(sizeof(engine_configuration_s) == 4220);
@ -5603,4 +5626,4 @@ struct persistent_config_s {
static_assert(sizeof(persistent_config_s) == 22656);
// end
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:31:33 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:22:30 UTC 2024

View File

@ -1,4 +1,4 @@
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:31:18 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:22:15 UTC 2024
// by class com.rusefi.output.CHeaderConsumer
// begin
#pragma once
@ -121,6 +121,25 @@ struct pid_s {
};
static_assert(sizeof(pid_s) == 20);
// start of MsIoBox_config_s
struct MsIoBox_config_s {
/**
* offset 0
*/
MsIoBoxId id;
/**
* offset 1
*/
MsIoBoxVss vss;
/**
* need 4 byte alignment
* units: units
* offset 2
*/
uint8_t alignmentFill_at_2[2];
};
static_assert(sizeof(MsIoBox_config_s) == 4);
// start of cranking_parameters_s
struct cranking_parameters_s {
/**
@ -4533,10 +4552,14 @@ struct engine_configuration_s {
*/
float tcu_rangeSensorBiasResistor;
/**
* units: units
* offset 4016
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[204];
MsIoBox_config_s msIoBox0;
/**
* units: units
* offset 4020
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[200];
};
static_assert(sizeof(engine_configuration_s) == 4220);
@ -5603,4 +5626,4 @@ struct persistent_config_s {
static_assert(sizeof(persistent_config_s) == 22656);
// end
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:31:18 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:22:15 UTC 2024

View File

@ -1,4 +1,4 @@
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:31:23 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:22:20 UTC 2024
// by class com.rusefi.output.CHeaderConsumer
// begin
#pragma once
@ -121,6 +121,25 @@ struct pid_s {
};
static_assert(sizeof(pid_s) == 20);
// start of MsIoBox_config_s
struct MsIoBox_config_s {
/**
* offset 0
*/
MsIoBoxId id;
/**
* offset 1
*/
MsIoBoxVss vss;
/**
* need 4 byte alignment
* units: units
* offset 2
*/
uint8_t alignmentFill_at_2[2];
};
static_assert(sizeof(MsIoBox_config_s) == 4);
// start of cranking_parameters_s
struct cranking_parameters_s {
/**
@ -4533,10 +4552,14 @@ struct engine_configuration_s {
*/
float tcu_rangeSensorBiasResistor;
/**
* units: units
* offset 4016
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[204];
MsIoBox_config_s msIoBox0;
/**
* units: units
* offset 4020
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[200];
};
static_assert(sizeof(engine_configuration_s) == 4220);
@ -5603,4 +5626,4 @@ struct persistent_config_s {
static_assert(sizeof(persistent_config_s) == 22656);
// end
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:31:23 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:22:20 UTC 2024

View File

@ -1,4 +1,4 @@
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:31:25 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:22:22 UTC 2024
// by class com.rusefi.output.CHeaderConsumer
// begin
#pragma once
@ -121,6 +121,25 @@ struct pid_s {
};
static_assert(sizeof(pid_s) == 20);
// start of MsIoBox_config_s
struct MsIoBox_config_s {
/**
* offset 0
*/
MsIoBoxId id;
/**
* offset 1
*/
MsIoBoxVss vss;
/**
* need 4 byte alignment
* units: units
* offset 2
*/
uint8_t alignmentFill_at_2[2];
};
static_assert(sizeof(MsIoBox_config_s) == 4);
// start of cranking_parameters_s
struct cranking_parameters_s {
/**
@ -4533,10 +4552,14 @@ struct engine_configuration_s {
*/
float tcu_rangeSensorBiasResistor;
/**
* units: units
* offset 4016
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[204];
MsIoBox_config_s msIoBox0;
/**
* units: units
* offset 4020
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[200];
};
static_assert(sizeof(engine_configuration_s) == 4220);
@ -5603,4 +5626,4 @@ struct persistent_config_s {
static_assert(sizeof(persistent_config_s) == 22656);
// end
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:31:25 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:22:22 UTC 2024

View File

@ -1,4 +1,4 @@
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:30:20 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:21:16 UTC 2024
// by class com.rusefi.output.CHeaderConsumer
// begin
#pragma once
@ -121,6 +121,25 @@ struct pid_s {
};
static_assert(sizeof(pid_s) == 20);
// start of MsIoBox_config_s
struct MsIoBox_config_s {
/**
* offset 0
*/
MsIoBoxId id;
/**
* offset 1
*/
MsIoBoxVss vss;
/**
* need 4 byte alignment
* units: units
* offset 2
*/
uint8_t alignmentFill_at_2[2];
};
static_assert(sizeof(MsIoBox_config_s) == 4);
// start of cranking_parameters_s
struct cranking_parameters_s {
/**
@ -4533,10 +4552,14 @@ struct engine_configuration_s {
*/
float tcu_rangeSensorBiasResistor;
/**
* units: units
* offset 4016
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[204];
MsIoBox_config_s msIoBox0;
/**
* units: units
* offset 4020
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[200];
};
static_assert(sizeof(engine_configuration_s) == 4220);
@ -5603,4 +5626,4 @@ struct persistent_config_s {
static_assert(sizeof(persistent_config_s) == 22656);
// end
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:30:20 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:21:16 UTC 2024

View File

@ -1,4 +1,4 @@
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:30:58 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:21:55 UTC 2024
// by class com.rusefi.output.CHeaderConsumer
// begin
#pragma once
@ -121,6 +121,25 @@ struct pid_s {
};
static_assert(sizeof(pid_s) == 20);
// start of MsIoBox_config_s
struct MsIoBox_config_s {
/**
* offset 0
*/
MsIoBoxId id;
/**
* offset 1
*/
MsIoBoxVss vss;
/**
* need 4 byte alignment
* units: units
* offset 2
*/
uint8_t alignmentFill_at_2[2];
};
static_assert(sizeof(MsIoBox_config_s) == 4);
// start of cranking_parameters_s
struct cranking_parameters_s {
/**
@ -4533,10 +4552,14 @@ struct engine_configuration_s {
*/
float tcu_rangeSensorBiasResistor;
/**
* units: units
* offset 4016
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[204];
MsIoBox_config_s msIoBox0;
/**
* units: units
* offset 4020
*/
uint8_t unusedOftenChangesDuringFirmwareUpdate[200];
};
static_assert(sizeof(engine_configuration_s) == 4220);
@ -5603,4 +5626,4 @@ struct persistent_config_s {
static_assert(sizeof(persistent_config_s) == 22656);
// end
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Thu Apr 18 20:30:58 UTC 2024
// this section was generated automatically by rusEFI tool config_definition-all.jar based on (unknown script) integration/rusefi_config.txt Sat Apr 20 12:21:55 UTC 2024

View File

@ -1081,6 +1081,19 @@
#define mc33810maxDwellTimer_e_DWELL_8MS 2
#define MLQ_FIELD_HEADER_SIZE 89
#define MLQ_HEADER_SIZE 24
#define MsIoBox_config_s_size 4
#define MsIoBoxId_auto_enum 0="OFF",1="ID200",2="ID220",3="ID240"
#define MsIoBoxId_enum "Off", "ID1 (0x200)", "ID2 (0x220)", "ID3 (0x240)"
#define MsIoBoxId_ID200 1
#define MsIoBoxId_ID220 2
#define MsIoBoxId_ID240 3
#define MsIoBoxId_OFF 0
#define MsIoBoxVss_ALL1234 3
#define MsIoBoxVss_auto_enum 0="OFF",3="ALL1234",2="HALL34",1="VR12"
#define MsIoBoxVss_enum "Off", "VR speed in (1, 2)", "Hall speed in (3, 4)", "All (1, 2, 3, 4)"
#define MsIoBoxVss_HALL34 2
#define MsIoBoxVss_OFF 0
#define MsIoBoxVss_VR12 1
#define operation_mode_e_FOUR_STROKE_CAM_SENSOR 2
#define operation_mode_e_FOUR_STROKE_CRANK_SENSOR 1
#define operation_mode_e_FOUR_STROKE_SIX_TIMES_CRANK_SENSOR 7
@ -1193,7 +1206,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 2781469923
#define SIGNATURE_HASH 4188838529
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1570,7 +1583,7 @@
#define ts_show_vr_threshold_all true
#define ts_show_vr_threshold_pins false
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.20.alphax-2chan.2781469923"
#define TS_SIGNATURE "rusEFI master.2024.04.20.alphax-2chan.4188838529"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1083,6 +1083,19 @@
#define mc33810maxDwellTimer_e_DWELL_8MS 2
#define MLQ_FIELD_HEADER_SIZE 89
#define MLQ_HEADER_SIZE 24
#define MsIoBox_config_s_size 4
#define MsIoBoxId_auto_enum 0="OFF",1="ID200",2="ID220",3="ID240"
#define MsIoBoxId_enum "Off", "ID1 (0x200)", "ID2 (0x220)", "ID3 (0x240)"
#define MsIoBoxId_ID200 1
#define MsIoBoxId_ID220 2
#define MsIoBoxId_ID240 3
#define MsIoBoxId_OFF 0
#define MsIoBoxVss_ALL1234 3
#define MsIoBoxVss_auto_enum 0="OFF",3="ALL1234",2="HALL34",1="VR12"
#define MsIoBoxVss_enum "Off", "VR speed in (1, 2)", "Hall speed in (3, 4)", "All (1, 2, 3, 4)"
#define MsIoBoxVss_HALL34 2
#define MsIoBoxVss_OFF 0
#define MsIoBoxVss_VR12 1
#define operation_mode_e_FOUR_STROKE_CAM_SENSOR 2
#define operation_mode_e_FOUR_STROKE_CRANK_SENSOR 1
#define operation_mode_e_FOUR_STROKE_SIX_TIMES_CRANK_SENSOR 7
@ -1195,7 +1208,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 4285252013
#define SIGNATURE_HASH 2735638479
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1572,7 +1585,7 @@
#define ts_show_vr_threshold_all true
#define ts_show_vr_threshold_pins false
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.20.alphax-4chan.4285252013"
#define TS_SIGNATURE "rusEFI master.2024.04.20.alphax-4chan.2735638479"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1083,6 +1083,19 @@
#define mc33810maxDwellTimer_e_DWELL_8MS 2
#define MLQ_FIELD_HEADER_SIZE 89
#define MLQ_HEADER_SIZE 24
#define MsIoBox_config_s_size 4
#define MsIoBoxId_auto_enum 0="OFF",1="ID200",2="ID220",3="ID240"
#define MsIoBoxId_enum "Off", "ID1 (0x200)", "ID2 (0x220)", "ID3 (0x240)"
#define MsIoBoxId_ID200 1
#define MsIoBoxId_ID220 2
#define MsIoBoxId_ID240 3
#define MsIoBoxId_OFF 0
#define MsIoBoxVss_ALL1234 3
#define MsIoBoxVss_auto_enum 0="OFF",3="ALL1234",2="HALL34",1="VR12"
#define MsIoBoxVss_enum "Off", "VR speed in (1, 2)", "Hall speed in (3, 4)", "All (1, 2, 3, 4)"
#define MsIoBoxVss_HALL34 2
#define MsIoBoxVss_OFF 0
#define MsIoBoxVss_VR12 1
#define operation_mode_e_FOUR_STROKE_CAM_SENSOR 2
#define operation_mode_e_FOUR_STROKE_CRANK_SENSOR 1
#define operation_mode_e_FOUR_STROKE_SIX_TIMES_CRANK_SENSOR 7
@ -1195,7 +1208,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 4285252013
#define SIGNATURE_HASH 2735638479
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1572,7 +1585,7 @@
#define ts_show_vr_threshold_all true
#define ts_show_vr_threshold_pins false
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.20.alphax-4chan_f7.4285252013"
#define TS_SIGNATURE "rusEFI master.2024.04.20.alphax-4chan_f7.2735638479"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1082,6 +1082,19 @@
#define mc33810maxDwellTimer_e_DWELL_8MS 2
#define MLQ_FIELD_HEADER_SIZE 89
#define MLQ_HEADER_SIZE 24
#define MsIoBox_config_s_size 4
#define MsIoBoxId_auto_enum 0="OFF",1="ID200",2="ID220",3="ID240"
#define MsIoBoxId_enum "Off", "ID1 (0x200)", "ID2 (0x220)", "ID3 (0x240)"
#define MsIoBoxId_ID200 1
#define MsIoBoxId_ID220 2
#define MsIoBoxId_ID240 3
#define MsIoBoxId_OFF 0
#define MsIoBoxVss_ALL1234 3
#define MsIoBoxVss_auto_enum 0="OFF",3="ALL1234",2="HALL34",1="VR12"
#define MsIoBoxVss_enum "Off", "VR speed in (1, 2)", "Hall speed in (3, 4)", "All (1, 2, 3, 4)"
#define MsIoBoxVss_HALL34 2
#define MsIoBoxVss_OFF 0
#define MsIoBoxVss_VR12 1
#define operation_mode_e_FOUR_STROKE_CAM_SENSOR 2
#define operation_mode_e_FOUR_STROKE_CRANK_SENSOR 1
#define operation_mode_e_FOUR_STROKE_SIX_TIMES_CRANK_SENSOR 7
@ -1194,7 +1207,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 3036662656
#define SIGNATURE_HASH 3902442978
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1571,7 +1584,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.20.alphax-8chan-revA.3036662656"
#define TS_SIGNATURE "rusEFI master.2024.04.20.alphax-8chan-revA.3902442978"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1082,6 +1082,19 @@
#define mc33810maxDwellTimer_e_DWELL_8MS 2
#define MLQ_FIELD_HEADER_SIZE 89
#define MLQ_HEADER_SIZE 24
#define MsIoBox_config_s_size 4
#define MsIoBoxId_auto_enum 0="OFF",1="ID200",2="ID220",3="ID240"
#define MsIoBoxId_enum "Off", "ID1 (0x200)", "ID2 (0x220)", "ID3 (0x240)"
#define MsIoBoxId_ID200 1
#define MsIoBoxId_ID220 2
#define MsIoBoxId_ID240 3
#define MsIoBoxId_OFF 0
#define MsIoBoxVss_ALL1234 3
#define MsIoBoxVss_auto_enum 0="OFF",3="ALL1234",2="HALL34",1="VR12"
#define MsIoBoxVss_enum "Off", "VR speed in (1, 2)", "Hall speed in (3, 4)", "All (1, 2, 3, 4)"
#define MsIoBoxVss_HALL34 2
#define MsIoBoxVss_OFF 0
#define MsIoBoxVss_VR12 1
#define operation_mode_e_FOUR_STROKE_CAM_SENSOR 2
#define operation_mode_e_FOUR_STROKE_CRANK_SENSOR 1
#define operation_mode_e_FOUR_STROKE_SIX_TIMES_CRANK_SENSOR 7
@ -1194,7 +1207,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 2404578768
#define SIGNATURE_HASH 3543643058
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1571,7 +1584,7 @@
#define ts_show_vr_threshold_all true
#define ts_show_vr_threshold_pins false
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.20.alphax-8chan.2404578768"
#define TS_SIGNATURE "rusEFI master.2024.04.20.alphax-8chan.3543643058"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1082,6 +1082,19 @@
#define mc33810maxDwellTimer_e_DWELL_8MS 2
#define MLQ_FIELD_HEADER_SIZE 89
#define MLQ_HEADER_SIZE 24
#define MsIoBox_config_s_size 4
#define MsIoBoxId_auto_enum 0="OFF",1="ID200",2="ID220",3="ID240"
#define MsIoBoxId_enum "Off", "ID1 (0x200)", "ID2 (0x220)", "ID3 (0x240)"
#define MsIoBoxId_ID200 1
#define MsIoBoxId_ID220 2
#define MsIoBoxId_ID240 3
#define MsIoBoxId_OFF 0
#define MsIoBoxVss_ALL1234 3
#define MsIoBoxVss_auto_enum 0="OFF",3="ALL1234",2="HALL34",1="VR12"
#define MsIoBoxVss_enum "Off", "VR speed in (1, 2)", "Hall speed in (3, 4)", "All (1, 2, 3, 4)"
#define MsIoBoxVss_HALL34 2
#define MsIoBoxVss_OFF 0
#define MsIoBoxVss_VR12 1
#define operation_mode_e_FOUR_STROKE_CAM_SENSOR 2
#define operation_mode_e_FOUR_STROKE_CRANK_SENSOR 1
#define operation_mode_e_FOUR_STROKE_SIX_TIMES_CRANK_SENSOR 7
@ -1194,7 +1207,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 2404578768
#define SIGNATURE_HASH 3543643058
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1571,7 +1584,7 @@
#define ts_show_vr_threshold_all true
#define ts_show_vr_threshold_pins false
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.20.alphax-8chan_f7.2404578768"
#define TS_SIGNATURE "rusEFI master.2024.04.20.alphax-8chan_f7.3543643058"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1082,6 +1082,19 @@
#define mc33810maxDwellTimer_e_DWELL_8MS 2
#define MLQ_FIELD_HEADER_SIZE 89
#define MLQ_HEADER_SIZE 24
#define MsIoBox_config_s_size 4
#define MsIoBoxId_auto_enum 0="OFF",1="ID200",2="ID220",3="ID240"
#define MsIoBoxId_enum "Off", "ID1 (0x200)", "ID2 (0x220)", "ID3 (0x240)"
#define MsIoBoxId_ID200 1
#define MsIoBoxId_ID220 2
#define MsIoBoxId_ID240 3
#define MsIoBoxId_OFF 0
#define MsIoBoxVss_ALL1234 3
#define MsIoBoxVss_auto_enum 0="OFF",3="ALL1234",2="HALL34",1="VR12"
#define MsIoBoxVss_enum "Off", "VR speed in (1, 2)", "Hall speed in (3, 4)", "All (1, 2, 3, 4)"
#define MsIoBoxVss_HALL34 2
#define MsIoBoxVss_OFF 0
#define MsIoBoxVss_VR12 1
#define operation_mode_e_FOUR_STROKE_CAM_SENSOR 2
#define operation_mode_e_FOUR_STROKE_CRANK_SENSOR 1
#define operation_mode_e_FOUR_STROKE_SIX_TIMES_CRANK_SENSOR 7
@ -1193,7 +1206,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 3809755159
#define SIGNATURE_HASH 3211855477
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1570,7 +1583,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.20.at_start_f435.3809755159"
#define TS_SIGNATURE "rusEFI master.2024.04.20.at_start_f435.3211855477"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1082,6 +1082,19 @@
#define mc33810maxDwellTimer_e_DWELL_8MS 2
#define MLQ_FIELD_HEADER_SIZE 89
#define MLQ_HEADER_SIZE 24
#define MsIoBox_config_s_size 4
#define MsIoBoxId_auto_enum 0="OFF",1="ID200",2="ID220",3="ID240"
#define MsIoBoxId_enum "Off", "ID1 (0x200)", "ID2 (0x220)", "ID3 (0x240)"
#define MsIoBoxId_ID200 1
#define MsIoBoxId_ID220 2
#define MsIoBoxId_ID240 3
#define MsIoBoxId_OFF 0
#define MsIoBoxVss_ALL1234 3
#define MsIoBoxVss_auto_enum 0="OFF",3="ALL1234",2="HALL34",1="VR12"
#define MsIoBoxVss_enum "Off", "VR speed in (1, 2)", "Hall speed in (3, 4)", "All (1, 2, 3, 4)"
#define MsIoBoxVss_HALL34 2
#define MsIoBoxVss_OFF 0
#define MsIoBoxVss_VR12 1
#define operation_mode_e_FOUR_STROKE_CAM_SENSOR 2
#define operation_mode_e_FOUR_STROKE_CRANK_SENSOR 1
#define operation_mode_e_FOUR_STROKE_SIX_TIMES_CRANK_SENSOR 7
@ -1193,7 +1206,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 2803078233
#define SIGNATURE_HASH 4218868283
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1570,7 +1583,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.20.atlas.2803078233"
#define TS_SIGNATURE "rusEFI master.2024.04.20.atlas.4218868283"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1082,6 +1082,19 @@
#define mc33810maxDwellTimer_e_DWELL_8MS 2
#define MLQ_FIELD_HEADER_SIZE 89
#define MLQ_HEADER_SIZE 24
#define MsIoBox_config_s_size 4
#define MsIoBoxId_auto_enum 0="OFF",1="ID200",2="ID220",3="ID240"
#define MsIoBoxId_enum "Off", "ID1 (0x200)", "ID2 (0x220)", "ID3 (0x240)"
#define MsIoBoxId_ID200 1
#define MsIoBoxId_ID220 2
#define MsIoBoxId_ID240 3
#define MsIoBoxId_OFF 0
#define MsIoBoxVss_ALL1234 3
#define MsIoBoxVss_auto_enum 0="OFF",3="ALL1234",2="HALL34",1="VR12"
#define MsIoBoxVss_enum "Off", "VR speed in (1, 2)", "Hall speed in (3, 4)", "All (1, 2, 3, 4)"
#define MsIoBoxVss_HALL34 2
#define MsIoBoxVss_OFF 0
#define MsIoBoxVss_VR12 1
#define operation_mode_e_FOUR_STROKE_CAM_SENSOR 2
#define operation_mode_e_FOUR_STROKE_CRANK_SENSOR 1
#define operation_mode_e_FOUR_STROKE_SIX_TIMES_CRANK_SENSOR 7
@ -1193,7 +1206,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets true
#define SIGNATURE_HASH 1195752310
#define SIGNATURE_HASH 455146772
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1570,7 +1583,7 @@
#define ts_show_vr_threshold_all true
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.20.f407-discovery.1195752310"
#define TS_SIGNATURE "rusEFI master.2024.04.20.f407-discovery.455146772"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1082,6 +1082,19 @@
#define mc33810maxDwellTimer_e_DWELL_8MS 2
#define MLQ_FIELD_HEADER_SIZE 89
#define MLQ_HEADER_SIZE 24
#define MsIoBox_config_s_size 4
#define MsIoBoxId_auto_enum 0="OFF",1="ID200",2="ID220",3="ID240"
#define MsIoBoxId_enum "Off", "ID1 (0x200)", "ID2 (0x220)", "ID3 (0x240)"
#define MsIoBoxId_ID200 1
#define MsIoBoxId_ID220 2
#define MsIoBoxId_ID240 3
#define MsIoBoxId_OFF 0
#define MsIoBoxVss_ALL1234 3
#define MsIoBoxVss_auto_enum 0="OFF",3="ALL1234",2="HALL34",1="VR12"
#define MsIoBoxVss_enum "Off", "VR speed in (1, 2)", "Hall speed in (3, 4)", "All (1, 2, 3, 4)"
#define MsIoBoxVss_HALL34 2
#define MsIoBoxVss_OFF 0
#define MsIoBoxVss_VR12 1
#define operation_mode_e_FOUR_STROKE_CAM_SENSOR 2
#define operation_mode_e_FOUR_STROKE_CRANK_SENSOR 1
#define operation_mode_e_FOUR_STROKE_SIX_TIMES_CRANK_SENSOR 7
@ -1193,7 +1206,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 3809755159
#define SIGNATURE_HASH 3211855477
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1570,7 +1583,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.20.f429-discovery.3809755159"
#define TS_SIGNATURE "rusEFI master.2024.04.20.f429-discovery.3211855477"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1082,6 +1082,19 @@
#define mc33810maxDwellTimer_e_DWELL_8MS 2
#define MLQ_FIELD_HEADER_SIZE 89
#define MLQ_HEADER_SIZE 24
#define MsIoBox_config_s_size 4
#define MsIoBoxId_auto_enum 0="OFF",1="ID200",2="ID220",3="ID240"
#define MsIoBoxId_enum "Off", "ID1 (0x200)", "ID2 (0x220)", "ID3 (0x240)"
#define MsIoBoxId_ID200 1
#define MsIoBoxId_ID220 2
#define MsIoBoxId_ID240 3
#define MsIoBoxId_OFF 0
#define MsIoBoxVss_ALL1234 3
#define MsIoBoxVss_auto_enum 0="OFF",3="ALL1234",2="HALL34",1="VR12"
#define MsIoBoxVss_enum "Off", "VR speed in (1, 2)", "Hall speed in (3, 4)", "All (1, 2, 3, 4)"
#define MsIoBoxVss_HALL34 2
#define MsIoBoxVss_OFF 0
#define MsIoBoxVss_VR12 1
#define operation_mode_e_FOUR_STROKE_CAM_SENSOR 2
#define operation_mode_e_FOUR_STROKE_CRANK_SENSOR 1
#define operation_mode_e_FOUR_STROKE_SIX_TIMES_CRANK_SENSOR 7
@ -1193,7 +1206,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 3519235716
#define SIGNATURE_HASH 2376466662
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1570,7 +1583,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.20.f469-discovery.3519235716"
#define TS_SIGNATURE "rusEFI master.2024.04.20.f469-discovery.2376466662"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1082,6 +1082,19 @@
#define mc33810maxDwellTimer_e_DWELL_8MS 2
#define MLQ_FIELD_HEADER_SIZE 89
#define MLQ_HEADER_SIZE 24
#define MsIoBox_config_s_size 4
#define MsIoBoxId_auto_enum 0="OFF",1="ID200",2="ID220",3="ID240"
#define MsIoBoxId_enum "Off", "ID1 (0x200)", "ID2 (0x220)", "ID3 (0x240)"
#define MsIoBoxId_ID200 1
#define MsIoBoxId_ID220 2
#define MsIoBoxId_ID240 3
#define MsIoBoxId_OFF 0
#define MsIoBoxVss_ALL1234 3
#define MsIoBoxVss_auto_enum 0="OFF",3="ALL1234",2="HALL34",1="VR12"
#define MsIoBoxVss_enum "Off", "VR speed in (1, 2)", "Hall speed in (3, 4)", "All (1, 2, 3, 4)"
#define MsIoBoxVss_HALL34 2
#define MsIoBoxVss_OFF 0
#define MsIoBoxVss_VR12 1
#define operation_mode_e_FOUR_STROKE_CAM_SENSOR 2
#define operation_mode_e_FOUR_STROKE_CRANK_SENSOR 1
#define operation_mode_e_FOUR_STROKE_SIX_TIMES_CRANK_SENSOR 7
@ -1193,7 +1206,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets true
#define SIGNATURE_HASH 3046585356
#define SIGNATURE_HASH 3924980334
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1570,7 +1583,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.20.frankenso_na6.3046585356"
#define TS_SIGNATURE "rusEFI master.2024.04.20.frankenso_na6.3924980334"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1082,6 +1082,19 @@
#define mc33810maxDwellTimer_e_DWELL_8MS 2
#define MLQ_FIELD_HEADER_SIZE 89
#define MLQ_HEADER_SIZE 24
#define MsIoBox_config_s_size 4
#define MsIoBoxId_auto_enum 0="OFF",1="ID200",2="ID220",3="ID240"
#define MsIoBoxId_enum "Off", "ID1 (0x200)", "ID2 (0x220)", "ID3 (0x240)"
#define MsIoBoxId_ID200 1
#define MsIoBoxId_ID220 2
#define MsIoBoxId_ID240 3
#define MsIoBoxId_OFF 0
#define MsIoBoxVss_ALL1234 3
#define MsIoBoxVss_auto_enum 0="OFF",3="ALL1234",2="HALL34",1="VR12"
#define MsIoBoxVss_enum "Off", "VR speed in (1, 2)", "Hall speed in (3, 4)", "All (1, 2, 3, 4)"
#define MsIoBoxVss_HALL34 2
#define MsIoBoxVss_OFF 0
#define MsIoBoxVss_VR12 1
#define operation_mode_e_FOUR_STROKE_CAM_SENSOR 2
#define operation_mode_e_FOUR_STROKE_CRANK_SENSOR 1
#define operation_mode_e_FOUR_STROKE_SIX_TIMES_CRANK_SENSOR 7
@ -1193,7 +1206,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 3809755159
#define SIGNATURE_HASH 3211855477
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1570,7 +1583,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.20.haba208.3809755159"
#define TS_SIGNATURE "rusEFI master.2024.04.20.haba208.3211855477"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1082,6 +1082,19 @@
#define mc33810maxDwellTimer_e_DWELL_8MS 2
#define MLQ_FIELD_HEADER_SIZE 89
#define MLQ_HEADER_SIZE 24
#define MsIoBox_config_s_size 4
#define MsIoBoxId_auto_enum 0="OFF",1="ID200",2="ID220",3="ID240"
#define MsIoBoxId_enum "Off", "ID1 (0x200)", "ID2 (0x220)", "ID3 (0x240)"
#define MsIoBoxId_ID200 1
#define MsIoBoxId_ID220 2
#define MsIoBoxId_ID240 3
#define MsIoBoxId_OFF 0
#define MsIoBoxVss_ALL1234 3
#define MsIoBoxVss_auto_enum 0="OFF",3="ALL1234",2="HALL34",1="VR12"
#define MsIoBoxVss_enum "Off", "VR speed in (1, 2)", "Hall speed in (3, 4)", "All (1, 2, 3, 4)"
#define MsIoBoxVss_HALL34 2
#define MsIoBoxVss_OFF 0
#define MsIoBoxVss_VR12 1
#define operation_mode_e_FOUR_STROKE_CAM_SENSOR 2
#define operation_mode_e_FOUR_STROKE_CRANK_SENSOR 1
#define operation_mode_e_FOUR_STROKE_SIX_TIMES_CRANK_SENSOR 7
@ -1194,7 +1207,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 1780275347
#define SIGNATURE_HASH 913940209
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1571,7 +1584,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.20.hellen-112-17.1780275347"
#define TS_SIGNATURE "rusEFI master.2024.04.20.hellen-112-17.913940209"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1082,6 +1082,19 @@
#define mc33810maxDwellTimer_e_DWELL_8MS 2
#define MLQ_FIELD_HEADER_SIZE 89
#define MLQ_HEADER_SIZE 24
#define MsIoBox_config_s_size 4
#define MsIoBoxId_auto_enum 0="OFF",1="ID200",2="ID220",3="ID240"
#define MsIoBoxId_enum "Off", "ID1 (0x200)", "ID2 (0x220)", "ID3 (0x240)"
#define MsIoBoxId_ID200 1
#define MsIoBoxId_ID220 2
#define MsIoBoxId_ID240 3
#define MsIoBoxId_OFF 0
#define MsIoBoxVss_ALL1234 3
#define MsIoBoxVss_auto_enum 0="OFF",3="ALL1234",2="HALL34",1="VR12"
#define MsIoBoxVss_enum "Off", "VR speed in (1, 2)", "Hall speed in (3, 4)", "All (1, 2, 3, 4)"
#define MsIoBoxVss_HALL34 2
#define MsIoBoxVss_OFF 0
#define MsIoBoxVss_VR12 1
#define operation_mode_e_FOUR_STROKE_CAM_SENSOR 2
#define operation_mode_e_FOUR_STROKE_CRANK_SENSOR 1
#define operation_mode_e_FOUR_STROKE_SIX_TIMES_CRANK_SENSOR 7
@ -1193,7 +1206,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 795682735
#define SIGNATURE_HASH 1929929165
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1570,7 +1583,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.20.hellen-gm-e67.795682735"
#define TS_SIGNATURE "rusEFI master.2024.04.20.hellen-gm-e67.1929929165"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1082,6 +1082,19 @@
#define mc33810maxDwellTimer_e_DWELL_8MS 2
#define MLQ_FIELD_HEADER_SIZE 89
#define MLQ_HEADER_SIZE 24
#define MsIoBox_config_s_size 4
#define MsIoBoxId_auto_enum 0="OFF",1="ID200",2="ID220",3="ID240"
#define MsIoBoxId_enum "Off", "ID1 (0x200)", "ID2 (0x220)", "ID3 (0x240)"
#define MsIoBoxId_ID200 1
#define MsIoBoxId_ID220 2
#define MsIoBoxId_ID240 3
#define MsIoBoxId_OFF 0
#define MsIoBoxVss_ALL1234 3
#define MsIoBoxVss_auto_enum 0="OFF",3="ALL1234",2="HALL34",1="VR12"
#define MsIoBoxVss_enum "Off", "VR speed in (1, 2)", "Hall speed in (3, 4)", "All (1, 2, 3, 4)"
#define MsIoBoxVss_HALL34 2
#define MsIoBoxVss_OFF 0
#define MsIoBoxVss_VR12 1
#define operation_mode_e_FOUR_STROKE_CAM_SENSOR 2
#define operation_mode_e_FOUR_STROKE_CRANK_SENSOR 1
#define operation_mode_e_FOUR_STROKE_SIX_TIMES_CRANK_SENSOR 7
@ -1194,7 +1207,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 305341516
#define SIGNATURE_HASH 1314284078
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1573,7 +1586,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.20.hellen-honda-k.305341516"
#define TS_SIGNATURE "rusEFI master.2024.04.20.hellen-honda-k.1314284078"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1082,6 +1082,19 @@
#define mc33810maxDwellTimer_e_DWELL_8MS 2
#define MLQ_FIELD_HEADER_SIZE 89
#define MLQ_HEADER_SIZE 24
#define MsIoBox_config_s_size 4
#define MsIoBoxId_auto_enum 0="OFF",1="ID200",2="ID220",3="ID240"
#define MsIoBoxId_enum "Off", "ID1 (0x200)", "ID2 (0x220)", "ID3 (0x240)"
#define MsIoBoxId_ID200 1
#define MsIoBoxId_ID220 2
#define MsIoBoxId_ID240 3
#define MsIoBoxId_OFF 0
#define MsIoBoxVss_ALL1234 3
#define MsIoBoxVss_auto_enum 0="OFF",3="ALL1234",2="HALL34",1="VR12"
#define MsIoBoxVss_enum "Off", "VR speed in (1, 2)", "Hall speed in (3, 4)", "All (1, 2, 3, 4)"
#define MsIoBoxVss_HALL34 2
#define MsIoBoxVss_OFF 0
#define MsIoBoxVss_VR12 1
#define operation_mode_e_FOUR_STROKE_CAM_SENSOR 2
#define operation_mode_e_FOUR_STROKE_CRANK_SENSOR 1
#define operation_mode_e_FOUR_STROKE_SIX_TIMES_CRANK_SENSOR 7
@ -1194,7 +1207,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 168605239
#define SIGNATURE_HASH 1449783381
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1571,7 +1584,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.20.hellen-nb1.168605239"
#define TS_SIGNATURE "rusEFI master.2024.04.20.hellen-nb1.1449783381"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1082,6 +1082,19 @@
#define mc33810maxDwellTimer_e_DWELL_8MS 2
#define MLQ_FIELD_HEADER_SIZE 89
#define MLQ_HEADER_SIZE 24
#define MsIoBox_config_s_size 4
#define MsIoBoxId_auto_enum 0="OFF",1="ID200",2="ID220",3="ID240"
#define MsIoBoxId_enum "Off", "ID1 (0x200)", "ID2 (0x220)", "ID3 (0x240)"
#define MsIoBoxId_ID200 1
#define MsIoBoxId_ID220 2
#define MsIoBoxId_ID240 3
#define MsIoBoxId_OFF 0
#define MsIoBoxVss_ALL1234 3
#define MsIoBoxVss_auto_enum 0="OFF",3="ALL1234",2="HALL34",1="VR12"
#define MsIoBoxVss_enum "Off", "VR speed in (1, 2)", "Hall speed in (3, 4)", "All (1, 2, 3, 4)"
#define MsIoBoxVss_HALL34 2
#define MsIoBoxVss_OFF 0
#define MsIoBoxVss_VR12 1
#define operation_mode_e_FOUR_STROKE_CAM_SENSOR 2
#define operation_mode_e_FOUR_STROKE_CRANK_SENSOR 1
#define operation_mode_e_FOUR_STROKE_SIX_TIMES_CRANK_SENSOR 7
@ -1194,7 +1207,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 3467570688
#define SIGNATURE_HASH 2462820450
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1571,7 +1584,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.20.hellen121nissan.3467570688"
#define TS_SIGNATURE "rusEFI master.2024.04.20.hellen121nissan.2462820450"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1082,6 +1082,19 @@
#define mc33810maxDwellTimer_e_DWELL_8MS 2
#define MLQ_FIELD_HEADER_SIZE 89
#define MLQ_HEADER_SIZE 24
#define MsIoBox_config_s_size 4
#define MsIoBoxId_auto_enum 0="OFF",1="ID200",2="ID220",3="ID240"
#define MsIoBoxId_enum "Off", "ID1 (0x200)", "ID2 (0x220)", "ID3 (0x240)"
#define MsIoBoxId_ID200 1
#define MsIoBoxId_ID220 2
#define MsIoBoxId_ID240 3
#define MsIoBoxId_OFF 0
#define MsIoBoxVss_ALL1234 3
#define MsIoBoxVss_auto_enum 0="OFF",3="ALL1234",2="HALL34",1="VR12"
#define MsIoBoxVss_enum "Off", "VR speed in (1, 2)", "Hall speed in (3, 4)", "All (1, 2, 3, 4)"
#define MsIoBoxVss_HALL34 2
#define MsIoBoxVss_OFF 0
#define MsIoBoxVss_VR12 1
#define operation_mode_e_FOUR_STROKE_CAM_SENSOR 2
#define operation_mode_e_FOUR_STROKE_CRANK_SENSOR 1
#define operation_mode_e_FOUR_STROKE_SIX_TIMES_CRANK_SENSOR 7
@ -1194,7 +1207,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 3547160049
#define SIGNATURE_HASH 2399673235
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1571,7 +1584,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.20.hellen121vag.3547160049"
#define TS_SIGNATURE "rusEFI master.2024.04.20.hellen121vag.2399673235"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1082,6 +1082,19 @@
#define mc33810maxDwellTimer_e_DWELL_8MS 2
#define MLQ_FIELD_HEADER_SIZE 89
#define MLQ_HEADER_SIZE 24
#define MsIoBox_config_s_size 4
#define MsIoBoxId_auto_enum 0="OFF",1="ID200",2="ID220",3="ID240"
#define MsIoBoxId_enum "Off", "ID1 (0x200)", "ID2 (0x220)", "ID3 (0x240)"
#define MsIoBoxId_ID200 1
#define MsIoBoxId_ID220 2
#define MsIoBoxId_ID240 3
#define MsIoBoxId_OFF 0
#define MsIoBoxVss_ALL1234 3
#define MsIoBoxVss_auto_enum 0="OFF",3="ALL1234",2="HALL34",1="VR12"
#define MsIoBoxVss_enum "Off", "VR speed in (1, 2)", "Hall speed in (3, 4)", "All (1, 2, 3, 4)"
#define MsIoBoxVss_HALL34 2
#define MsIoBoxVss_OFF 0
#define MsIoBoxVss_VR12 1
#define operation_mode_e_FOUR_STROKE_CAM_SENSOR 2
#define operation_mode_e_FOUR_STROKE_CRANK_SENSOR 1
#define operation_mode_e_FOUR_STROKE_SIX_TIMES_CRANK_SENSOR 7
@ -1194,7 +1207,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 243690208
#define SIGNATURE_HASH 1390619778
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1571,7 +1584,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.20.hellen128.243690208"
#define TS_SIGNATURE "rusEFI master.2024.04.20.hellen128.1390619778"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1082,6 +1082,19 @@
#define mc33810maxDwellTimer_e_DWELL_8MS 2
#define MLQ_FIELD_HEADER_SIZE 89
#define MLQ_HEADER_SIZE 24
#define MsIoBox_config_s_size 4
#define MsIoBoxId_auto_enum 0="OFF",1="ID200",2="ID220",3="ID240"
#define MsIoBoxId_enum "Off", "ID1 (0x200)", "ID2 (0x220)", "ID3 (0x240)"
#define MsIoBoxId_ID200 1
#define MsIoBoxId_ID220 2
#define MsIoBoxId_ID240 3
#define MsIoBoxId_OFF 0
#define MsIoBoxVss_ALL1234 3
#define MsIoBoxVss_auto_enum 0="OFF",3="ALL1234",2="HALL34",1="VR12"
#define MsIoBoxVss_enum "Off", "VR speed in (1, 2)", "Hall speed in (3, 4)", "All (1, 2, 3, 4)"
#define MsIoBoxVss_HALL34 2
#define MsIoBoxVss_OFF 0
#define MsIoBoxVss_VR12 1
#define operation_mode_e_FOUR_STROKE_CAM_SENSOR 2
#define operation_mode_e_FOUR_STROKE_CRANK_SENSOR 1
#define operation_mode_e_FOUR_STROKE_SIX_TIMES_CRANK_SENSOR 7
@ -1194,7 +1207,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 338254949
#define SIGNATURE_HASH 1212946951
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1571,7 +1584,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.20.hellen154hyundai.338254949"
#define TS_SIGNATURE "rusEFI master.2024.04.20.hellen154hyundai.1212946951"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1082,6 +1082,19 @@
#define mc33810maxDwellTimer_e_DWELL_8MS 2
#define MLQ_FIELD_HEADER_SIZE 89
#define MLQ_HEADER_SIZE 24
#define MsIoBox_config_s_size 4
#define MsIoBoxId_auto_enum 0="OFF",1="ID200",2="ID220",3="ID240"
#define MsIoBoxId_enum "Off", "ID1 (0x200)", "ID2 (0x220)", "ID3 (0x240)"
#define MsIoBoxId_ID200 1
#define MsIoBoxId_ID220 2
#define MsIoBoxId_ID240 3
#define MsIoBoxId_OFF 0
#define MsIoBoxVss_ALL1234 3
#define MsIoBoxVss_auto_enum 0="OFF",3="ALL1234",2="HALL34",1="VR12"
#define MsIoBoxVss_enum "Off", "VR speed in (1, 2)", "Hall speed in (3, 4)", "All (1, 2, 3, 4)"
#define MsIoBoxVss_HALL34 2
#define MsIoBoxVss_OFF 0
#define MsIoBoxVss_VR12 1
#define operation_mode_e_FOUR_STROKE_CAM_SENSOR 2
#define operation_mode_e_FOUR_STROKE_CRANK_SENSOR 1
#define operation_mode_e_FOUR_STROKE_SIX_TIMES_CRANK_SENSOR 7
@ -1194,7 +1207,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 573471202
#define SIGNATURE_HASH 2118860672
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1571,7 +1584,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.20.hellen154hyundai_f7.573471202"
#define TS_SIGNATURE "rusEFI master.2024.04.20.hellen154hyundai_f7.2118860672"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1082,6 +1082,19 @@
#define mc33810maxDwellTimer_e_DWELL_8MS 2
#define MLQ_FIELD_HEADER_SIZE 89
#define MLQ_HEADER_SIZE 24
#define MsIoBox_config_s_size 4
#define MsIoBoxId_auto_enum 0="OFF",1="ID200",2="ID220",3="ID240"
#define MsIoBoxId_enum "Off", "ID1 (0x200)", "ID2 (0x220)", "ID3 (0x240)"
#define MsIoBoxId_ID200 1
#define MsIoBoxId_ID220 2
#define MsIoBoxId_ID240 3
#define MsIoBoxId_OFF 0
#define MsIoBoxVss_ALL1234 3
#define MsIoBoxVss_auto_enum 0="OFF",3="ALL1234",2="HALL34",1="VR12"
#define MsIoBoxVss_enum "Off", "VR speed in (1, 2)", "Hall speed in (3, 4)", "All (1, 2, 3, 4)"
#define MsIoBoxVss_HALL34 2
#define MsIoBoxVss_OFF 0
#define MsIoBoxVss_VR12 1
#define operation_mode_e_FOUR_STROKE_CAM_SENSOR 2
#define operation_mode_e_FOUR_STROKE_CRANK_SENSOR 1
#define operation_mode_e_FOUR_STROKE_SIX_TIMES_CRANK_SENSOR 7
@ -1194,7 +1207,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 1677046923
#define SIGNATURE_HASH 1066463977
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1571,7 +1584,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.20.hellen72.1677046923"
#define TS_SIGNATURE "rusEFI master.2024.04.20.hellen72.1066463977"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1082,6 +1082,19 @@
#define mc33810maxDwellTimer_e_DWELL_8MS 2
#define MLQ_FIELD_HEADER_SIZE 89
#define MLQ_HEADER_SIZE 24
#define MsIoBox_config_s_size 4
#define MsIoBoxId_auto_enum 0="OFF",1="ID200",2="ID220",3="ID240"
#define MsIoBoxId_enum "Off", "ID1 (0x200)", "ID2 (0x220)", "ID3 (0x240)"
#define MsIoBoxId_ID200 1
#define MsIoBoxId_ID220 2
#define MsIoBoxId_ID240 3
#define MsIoBoxId_OFF 0
#define MsIoBoxVss_ALL1234 3
#define MsIoBoxVss_auto_enum 0="OFF",3="ALL1234",2="HALL34",1="VR12"
#define MsIoBoxVss_enum "Off", "VR speed in (1, 2)", "Hall speed in (3, 4)", "All (1, 2, 3, 4)"
#define MsIoBoxVss_HALL34 2
#define MsIoBoxVss_OFF 0
#define MsIoBoxVss_VR12 1
#define operation_mode_e_FOUR_STROKE_CAM_SENSOR 2
#define operation_mode_e_FOUR_STROKE_CRANK_SENSOR 1
#define operation_mode_e_FOUR_STROKE_SIX_TIMES_CRANK_SENSOR 7
@ -1193,7 +1206,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 2256851185
#define SIGNATURE_HASH 3672217235
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1570,7 +1583,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.20.hellen81.2256851185"
#define TS_SIGNATURE "rusEFI master.2024.04.20.hellen81.3672217235"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1082,6 +1082,19 @@
#define mc33810maxDwellTimer_e_DWELL_8MS 2
#define MLQ_FIELD_HEADER_SIZE 89
#define MLQ_HEADER_SIZE 24
#define MsIoBox_config_s_size 4
#define MsIoBoxId_auto_enum 0="OFF",1="ID200",2="ID220",3="ID240"
#define MsIoBoxId_enum "Off", "ID1 (0x200)", "ID2 (0x220)", "ID3 (0x240)"
#define MsIoBoxId_ID200 1
#define MsIoBoxId_ID220 2
#define MsIoBoxId_ID240 3
#define MsIoBoxId_OFF 0
#define MsIoBoxVss_ALL1234 3
#define MsIoBoxVss_auto_enum 0="OFF",3="ALL1234",2="HALL34",1="VR12"
#define MsIoBoxVss_enum "Off", "VR speed in (1, 2)", "Hall speed in (3, 4)", "All (1, 2, 3, 4)"
#define MsIoBoxVss_HALL34 2
#define MsIoBoxVss_OFF 0
#define MsIoBoxVss_VR12 1
#define operation_mode_e_FOUR_STROKE_CAM_SENSOR 2
#define operation_mode_e_FOUR_STROKE_CRANK_SENSOR 1
#define operation_mode_e_FOUR_STROKE_SIX_TIMES_CRANK_SENSOR 7
@ -1194,7 +1207,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 2443691442
#define SIGNATURE_HASH 3452077008
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1571,7 +1584,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output false
#define TS_SIGNATURE "rusEFI master.2024.04.20.hellen88bmw.2443691442"
#define TS_SIGNATURE "rusEFI master.2024.04.20.hellen88bmw.3452077008"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1082,6 +1082,19 @@
#define mc33810maxDwellTimer_e_DWELL_8MS 2
#define MLQ_FIELD_HEADER_SIZE 89
#define MLQ_HEADER_SIZE 24
#define MsIoBox_config_s_size 4
#define MsIoBoxId_auto_enum 0="OFF",1="ID200",2="ID220",3="ID240"
#define MsIoBoxId_enum "Off", "ID1 (0x200)", "ID2 (0x220)", "ID3 (0x240)"
#define MsIoBoxId_ID200 1
#define MsIoBoxId_ID220 2
#define MsIoBoxId_ID240 3
#define MsIoBoxId_OFF 0
#define MsIoBoxVss_ALL1234 3
#define MsIoBoxVss_auto_enum 0="OFF",3="ALL1234",2="HALL34",1="VR12"
#define MsIoBoxVss_enum "Off", "VR speed in (1, 2)", "Hall speed in (3, 4)", "All (1, 2, 3, 4)"
#define MsIoBoxVss_HALL34 2
#define MsIoBoxVss_OFF 0
#define MsIoBoxVss_VR12 1
#define operation_mode_e_FOUR_STROKE_CAM_SENSOR 2
#define operation_mode_e_FOUR_STROKE_CRANK_SENSOR 1
#define operation_mode_e_FOUR_STROKE_SIX_TIMES_CRANK_SENSOR 7
@ -1194,7 +1207,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 2008130551
#define SIGNATURE_HASH 735372693
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1571,7 +1584,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.20.hellenNA6.2008130551"
#define TS_SIGNATURE "rusEFI master.2024.04.20.hellenNA6.735372693"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1082,6 +1082,19 @@
#define mc33810maxDwellTimer_e_DWELL_8MS 2
#define MLQ_FIELD_HEADER_SIZE 89
#define MLQ_HEADER_SIZE 24
#define MsIoBox_config_s_size 4
#define MsIoBoxId_auto_enum 0="OFF",1="ID200",2="ID220",3="ID240"
#define MsIoBoxId_enum "Off", "ID1 (0x200)", "ID2 (0x220)", "ID3 (0x240)"
#define MsIoBoxId_ID200 1
#define MsIoBoxId_ID220 2
#define MsIoBoxId_ID240 3
#define MsIoBoxId_OFF 0
#define MsIoBoxVss_ALL1234 3
#define MsIoBoxVss_auto_enum 0="OFF",3="ALL1234",2="HALL34",1="VR12"
#define MsIoBoxVss_enum "Off", "VR speed in (1, 2)", "Hall speed in (3, 4)", "All (1, 2, 3, 4)"
#define MsIoBoxVss_HALL34 2
#define MsIoBoxVss_OFF 0
#define MsIoBoxVss_VR12 1
#define operation_mode_e_FOUR_STROKE_CAM_SENSOR 2
#define operation_mode_e_FOUR_STROKE_CRANK_SENSOR 1
#define operation_mode_e_FOUR_STROKE_SIX_TIMES_CRANK_SENSOR 7
@ -1195,7 +1208,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 2288771385
#define SIGNATURE_HASH 3557730139
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1572,7 +1585,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.20.hellenNA8_96.2288771385"
#define TS_SIGNATURE "rusEFI master.2024.04.20.hellenNA8_96.3557730139"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1082,6 +1082,19 @@
#define mc33810maxDwellTimer_e_DWELL_8MS 2
#define MLQ_FIELD_HEADER_SIZE 89
#define MLQ_HEADER_SIZE 24
#define MsIoBox_config_s_size 4
#define MsIoBoxId_auto_enum 0="OFF",1="ID200",2="ID220",3="ID240"
#define MsIoBoxId_enum "Off", "ID1 (0x200)", "ID2 (0x220)", "ID3 (0x240)"
#define MsIoBoxId_ID200 1
#define MsIoBoxId_ID220 2
#define MsIoBoxId_ID240 3
#define MsIoBoxId_OFF 0
#define MsIoBoxVss_ALL1234 3
#define MsIoBoxVss_auto_enum 0="OFF",3="ALL1234",2="HALL34",1="VR12"
#define MsIoBoxVss_enum "Off", "VR speed in (1, 2)", "Hall speed in (3, 4)", "All (1, 2, 3, 4)"
#define MsIoBoxVss_HALL34 2
#define MsIoBoxVss_OFF 0
#define MsIoBoxVss_VR12 1
#define operation_mode_e_FOUR_STROKE_CAM_SENSOR 2
#define operation_mode_e_FOUR_STROKE_CRANK_SENSOR 1
#define operation_mode_e_FOUR_STROKE_SIX_TIMES_CRANK_SENSOR 7
@ -1193,7 +1206,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 1471051976
#define SIGNATURE_HASH 197869226
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1571,7 +1584,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.20.m74_9.1471051976"
#define TS_SIGNATURE "rusEFI master.2024.04.20.m74_9.197869226"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1082,6 +1082,19 @@
#define mc33810maxDwellTimer_e_DWELL_8MS 2
#define MLQ_FIELD_HEADER_SIZE 89
#define MLQ_HEADER_SIZE 24
#define MsIoBox_config_s_size 4
#define MsIoBoxId_auto_enum 0="OFF",1="ID200",2="ID220",3="ID240"
#define MsIoBoxId_enum "Off", "ID1 (0x200)", "ID2 (0x220)", "ID3 (0x240)"
#define MsIoBoxId_ID200 1
#define MsIoBoxId_ID220 2
#define MsIoBoxId_ID240 3
#define MsIoBoxId_OFF 0
#define MsIoBoxVss_ALL1234 3
#define MsIoBoxVss_auto_enum 0="OFF",3="ALL1234",2="HALL34",1="VR12"
#define MsIoBoxVss_enum "Off", "VR speed in (1, 2)", "Hall speed in (3, 4)", "All (1, 2, 3, 4)"
#define MsIoBoxVss_HALL34 2
#define MsIoBoxVss_OFF 0
#define MsIoBoxVss_VR12 1
#define operation_mode_e_FOUR_STROKE_CAM_SENSOR 2
#define operation_mode_e_FOUR_STROKE_CRANK_SENSOR 1
#define operation_mode_e_FOUR_STROKE_SIX_TIMES_CRANK_SENSOR 7
@ -1194,7 +1207,7 @@
#define show_microRusEFI_presets true
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 3772456680
#define SIGNATURE_HASH 3166591114
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1571,7 +1584,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.20.mre_f4.3772456680"
#define TS_SIGNATURE "rusEFI master.2024.04.20.mre_f4.3166591114"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1082,6 +1082,19 @@
#define mc33810maxDwellTimer_e_DWELL_8MS 2
#define MLQ_FIELD_HEADER_SIZE 89
#define MLQ_HEADER_SIZE 24
#define MsIoBox_config_s_size 4
#define MsIoBoxId_auto_enum 0="OFF",1="ID200",2="ID220",3="ID240"
#define MsIoBoxId_enum "Off", "ID1 (0x200)", "ID2 (0x220)", "ID3 (0x240)"
#define MsIoBoxId_ID200 1
#define MsIoBoxId_ID220 2
#define MsIoBoxId_ID240 3
#define MsIoBoxId_OFF 0
#define MsIoBoxVss_ALL1234 3
#define MsIoBoxVss_auto_enum 0="OFF",3="ALL1234",2="HALL34",1="VR12"
#define MsIoBoxVss_enum "Off", "VR speed in (1, 2)", "Hall speed in (3, 4)", "All (1, 2, 3, 4)"
#define MsIoBoxVss_HALL34 2
#define MsIoBoxVss_OFF 0
#define MsIoBoxVss_VR12 1
#define operation_mode_e_FOUR_STROKE_CAM_SENSOR 2
#define operation_mode_e_FOUR_STROKE_CRANK_SENSOR 1
#define operation_mode_e_FOUR_STROKE_SIX_TIMES_CRANK_SENSOR 7
@ -1194,7 +1207,7 @@
#define show_microRusEFI_presets true
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 3772456680
#define SIGNATURE_HASH 3166591114
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1571,7 +1584,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.20.mre_f7.3772456680"
#define TS_SIGNATURE "rusEFI master.2024.04.20.mre_f7.3166591114"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1082,6 +1082,19 @@
#define mc33810maxDwellTimer_e_DWELL_8MS 2
#define MLQ_FIELD_HEADER_SIZE 89
#define MLQ_HEADER_SIZE 24
#define MsIoBox_config_s_size 4
#define MsIoBoxId_auto_enum 0="OFF",1="ID200",2="ID220",3="ID240"
#define MsIoBoxId_enum "Off", "ID1 (0x200)", "ID2 (0x220)", "ID3 (0x240)"
#define MsIoBoxId_ID200 1
#define MsIoBoxId_ID220 2
#define MsIoBoxId_ID240 3
#define MsIoBoxId_OFF 0
#define MsIoBoxVss_ALL1234 3
#define MsIoBoxVss_auto_enum 0="OFF",3="ALL1234",2="HALL34",1="VR12"
#define MsIoBoxVss_enum "Off", "VR speed in (1, 2)", "Hall speed in (3, 4)", "All (1, 2, 3, 4)"
#define MsIoBoxVss_HALL34 2
#define MsIoBoxVss_OFF 0
#define MsIoBoxVss_VR12 1
#define operation_mode_e_FOUR_STROKE_CAM_SENSOR 2
#define operation_mode_e_FOUR_STROKE_CRANK_SENSOR 1
#define operation_mode_e_FOUR_STROKE_SIX_TIMES_CRANK_SENSOR 7
@ -1193,7 +1206,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 3809755159
#define SIGNATURE_HASH 3211855477
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1570,7 +1583,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.20.nucleo_f413.3809755159"
#define TS_SIGNATURE "rusEFI master.2024.04.20.nucleo_f413.3211855477"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1082,6 +1082,19 @@
#define mc33810maxDwellTimer_e_DWELL_8MS 2
#define MLQ_FIELD_HEADER_SIZE 89
#define MLQ_HEADER_SIZE 24
#define MsIoBox_config_s_size 4
#define MsIoBoxId_auto_enum 0="OFF",1="ID200",2="ID220",3="ID240"
#define MsIoBoxId_enum "Off", "ID1 (0x200)", "ID2 (0x220)", "ID3 (0x240)"
#define MsIoBoxId_ID200 1
#define MsIoBoxId_ID220 2
#define MsIoBoxId_ID240 3
#define MsIoBoxId_OFF 0
#define MsIoBoxVss_ALL1234 3
#define MsIoBoxVss_auto_enum 0="OFF",3="ALL1234",2="HALL34",1="VR12"
#define MsIoBoxVss_enum "Off", "VR speed in (1, 2)", "Hall speed in (3, 4)", "All (1, 2, 3, 4)"
#define MsIoBoxVss_HALL34 2
#define MsIoBoxVss_OFF 0
#define MsIoBoxVss_VR12 1
#define operation_mode_e_FOUR_STROKE_CAM_SENSOR 2
#define operation_mode_e_FOUR_STROKE_CRANK_SENSOR 1
#define operation_mode_e_FOUR_STROKE_SIX_TIMES_CRANK_SENSOR 7
@ -1193,7 +1206,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 3548417415
#define SIGNATURE_HASH 2414201829
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1570,7 +1583,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.20.prometheus_405.3548417415"
#define TS_SIGNATURE "rusEFI master.2024.04.20.prometheus_405.2414201829"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1082,6 +1082,19 @@
#define mc33810maxDwellTimer_e_DWELL_8MS 2
#define MLQ_FIELD_HEADER_SIZE 89
#define MLQ_HEADER_SIZE 24
#define MsIoBox_config_s_size 4
#define MsIoBoxId_auto_enum 0="OFF",1="ID200",2="ID220",3="ID240"
#define MsIoBoxId_enum "Off", "ID1 (0x200)", "ID2 (0x220)", "ID3 (0x240)"
#define MsIoBoxId_ID200 1
#define MsIoBoxId_ID220 2
#define MsIoBoxId_ID240 3
#define MsIoBoxId_OFF 0
#define MsIoBoxVss_ALL1234 3
#define MsIoBoxVss_auto_enum 0="OFF",3="ALL1234",2="HALL34",1="VR12"
#define MsIoBoxVss_enum "Off", "VR speed in (1, 2)", "Hall speed in (3, 4)", "All (1, 2, 3, 4)"
#define MsIoBoxVss_HALL34 2
#define MsIoBoxVss_OFF 0
#define MsIoBoxVss_VR12 1
#define operation_mode_e_FOUR_STROKE_CAM_SENSOR 2
#define operation_mode_e_FOUR_STROKE_CRANK_SENSOR 1
#define operation_mode_e_FOUR_STROKE_SIX_TIMES_CRANK_SENSOR 7
@ -1193,7 +1206,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 3548417415
#define SIGNATURE_HASH 2414201829
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1570,7 +1583,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.20.prometheus_469.3548417415"
#define TS_SIGNATURE "rusEFI master.2024.04.20.prometheus_469.2414201829"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1082,6 +1082,19 @@
#define mc33810maxDwellTimer_e_DWELL_8MS 2
#define MLQ_FIELD_HEADER_SIZE 89
#define MLQ_HEADER_SIZE 24
#define MsIoBox_config_s_size 4
#define MsIoBoxId_auto_enum 0="OFF",1="ID200",2="ID220",3="ID240"
#define MsIoBoxId_enum "Off", "ID1 (0x200)", "ID2 (0x220)", "ID3 (0x240)"
#define MsIoBoxId_ID200 1
#define MsIoBoxId_ID220 2
#define MsIoBoxId_ID240 3
#define MsIoBoxId_OFF 0
#define MsIoBoxVss_ALL1234 3
#define MsIoBoxVss_auto_enum 0="OFF",3="ALL1234",2="HALL34",1="VR12"
#define MsIoBoxVss_enum "Off", "VR speed in (1, 2)", "Hall speed in (3, 4)", "All (1, 2, 3, 4)"
#define MsIoBoxVss_HALL34 2
#define MsIoBoxVss_OFF 0
#define MsIoBoxVss_VR12 1
#define operation_mode_e_FOUR_STROKE_CAM_SENSOR 2
#define operation_mode_e_FOUR_STROKE_CRANK_SENSOR 1
#define operation_mode_e_FOUR_STROKE_SIX_TIMES_CRANK_SENSOR 7
@ -1193,7 +1206,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets true
#define show_test_presets false
#define SIGNATURE_HASH 152042037
#define SIGNATURE_HASH 1433058391
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1570,7 +1583,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.20.proteus_f4.152042037"
#define TS_SIGNATURE "rusEFI master.2024.04.20.proteus_f4.1433058391"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1082,6 +1082,19 @@
#define mc33810maxDwellTimer_e_DWELL_8MS 2
#define MLQ_FIELD_HEADER_SIZE 89
#define MLQ_HEADER_SIZE 24
#define MsIoBox_config_s_size 4
#define MsIoBoxId_auto_enum 0="OFF",1="ID200",2="ID220",3="ID240"
#define MsIoBoxId_enum "Off", "ID1 (0x200)", "ID2 (0x220)", "ID3 (0x240)"
#define MsIoBoxId_ID200 1
#define MsIoBoxId_ID220 2
#define MsIoBoxId_ID240 3
#define MsIoBoxId_OFF 0
#define MsIoBoxVss_ALL1234 3
#define MsIoBoxVss_auto_enum 0="OFF",3="ALL1234",2="HALL34",1="VR12"
#define MsIoBoxVss_enum "Off", "VR speed in (1, 2)", "Hall speed in (3, 4)", "All (1, 2, 3, 4)"
#define MsIoBoxVss_HALL34 2
#define MsIoBoxVss_OFF 0
#define MsIoBoxVss_VR12 1
#define operation_mode_e_FOUR_STROKE_CAM_SENSOR 2
#define operation_mode_e_FOUR_STROKE_CRANK_SENSOR 1
#define operation_mode_e_FOUR_STROKE_SIX_TIMES_CRANK_SENSOR 7
@ -1193,7 +1206,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets true
#define show_test_presets false
#define SIGNATURE_HASH 152042037
#define SIGNATURE_HASH 1433058391
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1570,7 +1583,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.20.proteus_f7.152042037"
#define TS_SIGNATURE "rusEFI master.2024.04.20.proteus_f7.1433058391"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1082,6 +1082,19 @@
#define mc33810maxDwellTimer_e_DWELL_8MS 2
#define MLQ_FIELD_HEADER_SIZE 89
#define MLQ_HEADER_SIZE 24
#define MsIoBox_config_s_size 4
#define MsIoBoxId_auto_enum 0="OFF",1="ID200",2="ID220",3="ID240"
#define MsIoBoxId_enum "Off", "ID1 (0x200)", "ID2 (0x220)", "ID3 (0x240)"
#define MsIoBoxId_ID200 1
#define MsIoBoxId_ID220 2
#define MsIoBoxId_ID240 3
#define MsIoBoxId_OFF 0
#define MsIoBoxVss_ALL1234 3
#define MsIoBoxVss_auto_enum 0="OFF",3="ALL1234",2="HALL34",1="VR12"
#define MsIoBoxVss_enum "Off", "VR speed in (1, 2)", "Hall speed in (3, 4)", "All (1, 2, 3, 4)"
#define MsIoBoxVss_HALL34 2
#define MsIoBoxVss_OFF 0
#define MsIoBoxVss_VR12 1
#define operation_mode_e_FOUR_STROKE_CAM_SENSOR 2
#define operation_mode_e_FOUR_STROKE_CRANK_SENSOR 1
#define operation_mode_e_FOUR_STROKE_SIX_TIMES_CRANK_SENSOR 7
@ -1193,7 +1206,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets true
#define show_test_presets false
#define SIGNATURE_HASH 152042037
#define SIGNATURE_HASH 1433058391
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1570,7 +1583,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.20.proteus_h7.152042037"
#define TS_SIGNATURE "rusEFI master.2024.04.20.proteus_h7.1433058391"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1082,6 +1082,19 @@
#define mc33810maxDwellTimer_e_DWELL_8MS 2
#define MLQ_FIELD_HEADER_SIZE 89
#define MLQ_HEADER_SIZE 24
#define MsIoBox_config_s_size 4
#define MsIoBoxId_auto_enum 0="OFF",1="ID200",2="ID220",3="ID240"
#define MsIoBoxId_enum "Off", "ID1 (0x200)", "ID2 (0x220)", "ID3 (0x240)"
#define MsIoBoxId_ID200 1
#define MsIoBoxId_ID220 2
#define MsIoBoxId_ID240 3
#define MsIoBoxId_OFF 0
#define MsIoBoxVss_ALL1234 3
#define MsIoBoxVss_auto_enum 0="OFF",3="ALL1234",2="HALL34",1="VR12"
#define MsIoBoxVss_enum "Off", "VR speed in (1, 2)", "Hall speed in (3, 4)", "All (1, 2, 3, 4)"
#define MsIoBoxVss_HALL34 2
#define MsIoBoxVss_OFF 0
#define MsIoBoxVss_VR12 1
#define operation_mode_e_FOUR_STROKE_CAM_SENSOR 2
#define operation_mode_e_FOUR_STROKE_CRANK_SENSOR 1
#define operation_mode_e_FOUR_STROKE_SIX_TIMES_CRANK_SENSOR 7
@ -1193,7 +1206,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 1553973461
#define SIGNATURE_HASH 16418487
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1571,7 +1584,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.20.s105.1553973461"
#define TS_SIGNATURE "rusEFI master.2024.04.20.s105.16418487"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1082,6 +1082,19 @@
#define mc33810maxDwellTimer_e_DWELL_8MS 2
#define MLQ_FIELD_HEADER_SIZE 89
#define MLQ_HEADER_SIZE 24
#define MsIoBox_config_s_size 4
#define MsIoBoxId_auto_enum 0="OFF",1="ID200",2="ID220",3="ID240"
#define MsIoBoxId_enum "Off", "ID1 (0x200)", "ID2 (0x220)", "ID3 (0x240)"
#define MsIoBoxId_ID200 1
#define MsIoBoxId_ID220 2
#define MsIoBoxId_ID240 3
#define MsIoBoxId_OFF 0
#define MsIoBoxVss_ALL1234 3
#define MsIoBoxVss_auto_enum 0="OFF",3="ALL1234",2="HALL34",1="VR12"
#define MsIoBoxVss_enum "Off", "VR speed in (1, 2)", "Hall speed in (3, 4)", "All (1, 2, 3, 4)"
#define MsIoBoxVss_HALL34 2
#define MsIoBoxVss_OFF 0
#define MsIoBoxVss_VR12 1
#define operation_mode_e_FOUR_STROKE_CAM_SENSOR 2
#define operation_mode_e_FOUR_STROKE_CRANK_SENSOR 1
#define operation_mode_e_FOUR_STROKE_SIX_TIMES_CRANK_SENSOR 7
@ -1194,7 +1207,7 @@
#define show_Proteus_presets false
#define show_small_can_board_presets true
#define show_test_presets false
#define SIGNATURE_HASH 1173971509
#define SIGNATURE_HASH 429663319
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1572,7 +1585,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.20.small-can-board.1173971509"
#define TS_SIGNATURE "rusEFI master.2024.04.20.small-can-board.429663319"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1082,6 +1082,19 @@
#define mc33810maxDwellTimer_e_DWELL_8MS 2
#define MLQ_FIELD_HEADER_SIZE 89
#define MLQ_HEADER_SIZE 24
#define MsIoBox_config_s_size 4
#define MsIoBoxId_auto_enum 0="OFF",1="ID200",2="ID220",3="ID240"
#define MsIoBoxId_enum "Off", "ID1 (0x200)", "ID2 (0x220)", "ID3 (0x240)"
#define MsIoBoxId_ID200 1
#define MsIoBoxId_ID220 2
#define MsIoBoxId_ID240 3
#define MsIoBoxId_OFF 0
#define MsIoBoxVss_ALL1234 3
#define MsIoBoxVss_auto_enum 0="OFF",3="ALL1234",2="HALL34",1="VR12"
#define MsIoBoxVss_enum "Off", "VR speed in (1, 2)", "Hall speed in (3, 4)", "All (1, 2, 3, 4)"
#define MsIoBoxVss_HALL34 2
#define MsIoBoxVss_OFF 0
#define MsIoBoxVss_VR12 1
#define operation_mode_e_FOUR_STROKE_CAM_SENSOR 2
#define operation_mode_e_FOUR_STROKE_CRANK_SENSOR 1
#define operation_mode_e_FOUR_STROKE_SIX_TIMES_CRANK_SENSOR 7
@ -1193,7 +1206,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 3809755159
#define SIGNATURE_HASH 3211855477
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1570,7 +1583,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.20.stm32f429_nucleo.3809755159"
#define TS_SIGNATURE "rusEFI master.2024.04.20.stm32f429_nucleo.3211855477"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1082,6 +1082,19 @@
#define mc33810maxDwellTimer_e_DWELL_8MS 2
#define MLQ_FIELD_HEADER_SIZE 89
#define MLQ_HEADER_SIZE 24
#define MsIoBox_config_s_size 4
#define MsIoBoxId_auto_enum 0="OFF",1="ID200",2="ID220",3="ID240"
#define MsIoBoxId_enum "Off", "ID1 (0x200)", "ID2 (0x220)", "ID3 (0x240)"
#define MsIoBoxId_ID200 1
#define MsIoBoxId_ID220 2
#define MsIoBoxId_ID240 3
#define MsIoBoxId_OFF 0
#define MsIoBoxVss_ALL1234 3
#define MsIoBoxVss_auto_enum 0="OFF",3="ALL1234",2="HALL34",1="VR12"
#define MsIoBoxVss_enum "Off", "VR speed in (1, 2)", "Hall speed in (3, 4)", "All (1, 2, 3, 4)"
#define MsIoBoxVss_HALL34 2
#define MsIoBoxVss_OFF 0
#define MsIoBoxVss_VR12 1
#define operation_mode_e_FOUR_STROKE_CAM_SENSOR 2
#define operation_mode_e_FOUR_STROKE_CRANK_SENSOR 1
#define operation_mode_e_FOUR_STROKE_SIX_TIMES_CRANK_SENSOR 7
@ -1193,7 +1206,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 3809755159
#define SIGNATURE_HASH 3211855477
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1570,7 +1583,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.20.stm32f767_nucleo.3809755159"
#define TS_SIGNATURE "rusEFI master.2024.04.20.stm32f767_nucleo.3211855477"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1082,6 +1082,19 @@
#define mc33810maxDwellTimer_e_DWELL_8MS 2
#define MLQ_FIELD_HEADER_SIZE 89
#define MLQ_HEADER_SIZE 24
#define MsIoBox_config_s_size 4
#define MsIoBoxId_auto_enum 0="OFF",1="ID200",2="ID220",3="ID240"
#define MsIoBoxId_enum "Off", "ID1 (0x200)", "ID2 (0x220)", "ID3 (0x240)"
#define MsIoBoxId_ID200 1
#define MsIoBoxId_ID220 2
#define MsIoBoxId_ID240 3
#define MsIoBoxId_OFF 0
#define MsIoBoxVss_ALL1234 3
#define MsIoBoxVss_auto_enum 0="OFF",3="ALL1234",2="HALL34",1="VR12"
#define MsIoBoxVss_enum "Off", "VR speed in (1, 2)", "Hall speed in (3, 4)", "All (1, 2, 3, 4)"
#define MsIoBoxVss_HALL34 2
#define MsIoBoxVss_OFF 0
#define MsIoBoxVss_VR12 1
#define operation_mode_e_FOUR_STROKE_CAM_SENSOR 2
#define operation_mode_e_FOUR_STROKE_CRANK_SENSOR 1
#define operation_mode_e_FOUR_STROKE_SIX_TIMES_CRANK_SENSOR 7
@ -1193,7 +1206,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 3809755159
#define SIGNATURE_HASH 3211855477
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1570,7 +1583,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.20.stm32h743_nucleo.3809755159"
#define TS_SIGNATURE "rusEFI master.2024.04.20.stm32h743_nucleo.3211855477"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1082,6 +1082,19 @@
#define mc33810maxDwellTimer_e_DWELL_8MS 2
#define MLQ_FIELD_HEADER_SIZE 89
#define MLQ_HEADER_SIZE 24
#define MsIoBox_config_s_size 4
#define MsIoBoxId_auto_enum 0="OFF",1="ID200",2="ID220",3="ID240"
#define MsIoBoxId_enum "Off", "ID1 (0x200)", "ID2 (0x220)", "ID3 (0x240)"
#define MsIoBoxId_ID200 1
#define MsIoBoxId_ID220 2
#define MsIoBoxId_ID240 3
#define MsIoBoxId_OFF 0
#define MsIoBoxVss_ALL1234 3
#define MsIoBoxVss_auto_enum 0="OFF",3="ALL1234",2="HALL34",1="VR12"
#define MsIoBoxVss_enum "Off", "VR speed in (1, 2)", "Hall speed in (3, 4)", "All (1, 2, 3, 4)"
#define MsIoBoxVss_HALL34 2
#define MsIoBoxVss_OFF 0
#define MsIoBoxVss_VR12 1
#define operation_mode_e_FOUR_STROKE_CAM_SENSOR 2
#define operation_mode_e_FOUR_STROKE_CRANK_SENSOR 1
#define operation_mode_e_FOUR_STROKE_SIX_TIMES_CRANK_SENSOR 7
@ -1193,7 +1206,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 3809755159
#define SIGNATURE_HASH 3211855477
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1570,7 +1583,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.20.t-b-g.3809755159"
#define TS_SIGNATURE "rusEFI master.2024.04.20.t-b-g.3211855477"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1082,6 +1082,19 @@
#define mc33810maxDwellTimer_e_DWELL_8MS 2
#define MLQ_FIELD_HEADER_SIZE 89
#define MLQ_HEADER_SIZE 24
#define MsIoBox_config_s_size 4
#define MsIoBoxId_auto_enum 0="OFF",1="ID200",2="ID220",3="ID240"
#define MsIoBoxId_enum "Off", "ID1 (0x200)", "ID2 (0x220)", "ID3 (0x240)"
#define MsIoBoxId_ID200 1
#define MsIoBoxId_ID220 2
#define MsIoBoxId_ID240 3
#define MsIoBoxId_OFF 0
#define MsIoBoxVss_ALL1234 3
#define MsIoBoxVss_auto_enum 0="OFF",3="ALL1234",2="HALL34",1="VR12"
#define MsIoBoxVss_enum "Off", "VR speed in (1, 2)", "Hall speed in (3, 4)", "All (1, 2, 3, 4)"
#define MsIoBoxVss_HALL34 2
#define MsIoBoxVss_OFF 0
#define MsIoBoxVss_VR12 1
#define operation_mode_e_FOUR_STROKE_CAM_SENSOR 2
#define operation_mode_e_FOUR_STROKE_CRANK_SENSOR 1
#define operation_mode_e_FOUR_STROKE_SIX_TIMES_CRANK_SENSOR 7
@ -1193,7 +1206,7 @@
#define show_microRusEFI_presets false
#define show_Proteus_presets false
#define show_test_presets false
#define SIGNATURE_HASH 3644456095
#define SIGNATURE_HASH 2237446909
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1570,7 +1583,7 @@
#define ts_show_vr_threshold_all false
#define ts_show_vr_threshold_pins true
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.20.tdg-pdm8.3644456095"
#define TS_SIGNATURE "rusEFI master.2024.04.20.tdg-pdm8.2237446909"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -1082,6 +1082,19 @@
#define mc33810maxDwellTimer_e_DWELL_8MS 2
#define MLQ_FIELD_HEADER_SIZE 89
#define MLQ_HEADER_SIZE 24
#define MsIoBox_config_s_size 4
#define MsIoBoxId_auto_enum 0="OFF",1="ID200",2="ID220",3="ID240"
#define MsIoBoxId_enum "Off", "ID1 (0x200)", "ID2 (0x220)", "ID3 (0x240)"
#define MsIoBoxId_ID200 1
#define MsIoBoxId_ID220 2
#define MsIoBoxId_ID240 3
#define MsIoBoxId_OFF 0
#define MsIoBoxVss_ALL1234 3
#define MsIoBoxVss_auto_enum 0="OFF",3="ALL1234",2="HALL34",1="VR12"
#define MsIoBoxVss_enum "Off", "VR speed in (1, 2)", "Hall speed in (3, 4)", "All (1, 2, 3, 4)"
#define MsIoBoxVss_HALL34 2
#define MsIoBoxVss_OFF 0
#define MsIoBoxVss_VR12 1
#define operation_mode_e_FOUR_STROKE_CAM_SENSOR 2
#define operation_mode_e_FOUR_STROKE_CRANK_SENSOR 1
#define operation_mode_e_FOUR_STROKE_SIX_TIMES_CRANK_SENSOR 7
@ -1194,7 +1207,7 @@
#define show_Proteus_presets false
#define show_test_presets false
#define show_uaefi_presets true
#define SIGNATURE_HASH 2574138668
#define SIGNATURE_HASH 3305864014
#define SIMULATOR_TUNE_BIN_FILE_NAME "generated/simulator_tune_image.bin"
#define SIMULATOR_TUNE_BIN_FILE_NAME_PREFIX "generated/simulator_tune_image"
#define SIMULATOR_TUNE_BIN_FILE_NAME_SUFFIX ".bin"
@ -1571,7 +1584,7 @@
#define ts_show_vr_threshold_all true
#define ts_show_vr_threshold_pins false
#define ts_show_vvt_output true
#define TS_SIGNATURE "rusEFI master.2024.04.20.uaefi.2574138668"
#define TS_SIGNATURE "rusEFI master.2024.04.20.uaefi.3305864014"
#define TS_SIMULATE_CAN '>'
#define TS_SIMULATE_CAN_char >
#define TS_SINGLE_WRITE_COMMAND 'W'

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool config_definition-all.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 2781469923
#define TS_SIGNATURE "rusEFI master.2024.04.20.alphax-2chan.2781469923"
#define SIGNATURE_HASH 4188838529
#define TS_SIGNATURE "rusEFI master.2024.04.20.alphax-2chan.4188838529"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool config_definition-all.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 4285252013
#define TS_SIGNATURE "rusEFI master.2024.04.20.alphax-4chan.4285252013"
#define SIGNATURE_HASH 2735638479
#define TS_SIGNATURE "rusEFI master.2024.04.20.alphax-4chan.2735638479"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool config_definition-all.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 4285252013
#define TS_SIGNATURE "rusEFI master.2024.04.20.alphax-4chan_f7.4285252013"
#define SIGNATURE_HASH 2735638479
#define TS_SIGNATURE "rusEFI master.2024.04.20.alphax-4chan_f7.2735638479"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool config_definition-all.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 3036662656
#define TS_SIGNATURE "rusEFI master.2024.04.20.alphax-8chan-revA.3036662656"
#define SIGNATURE_HASH 3902442978
#define TS_SIGNATURE "rusEFI master.2024.04.20.alphax-8chan-revA.3902442978"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool config_definition-all.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 2404578768
#define TS_SIGNATURE "rusEFI master.2024.04.20.alphax-8chan.2404578768"
#define SIGNATURE_HASH 3543643058
#define TS_SIGNATURE "rusEFI master.2024.04.20.alphax-8chan.3543643058"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool config_definition-all.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 2404578768
#define TS_SIGNATURE "rusEFI master.2024.04.20.alphax-8chan_f7.2404578768"
#define SIGNATURE_HASH 3543643058
#define TS_SIGNATURE "rusEFI master.2024.04.20.alphax-8chan_f7.3543643058"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool config_definition-all.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 3809755159
#define TS_SIGNATURE "rusEFI master.2024.04.20.at_start_f435.3809755159"
#define SIGNATURE_HASH 3211855477
#define TS_SIGNATURE "rusEFI master.2024.04.20.at_start_f435.3211855477"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool config_definition-all.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 2803078233
#define TS_SIGNATURE "rusEFI master.2024.04.20.atlas.2803078233"
#define SIGNATURE_HASH 4218868283
#define TS_SIGNATURE "rusEFI master.2024.04.20.atlas.4218868283"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool config_definition-all.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 1195752310
#define TS_SIGNATURE "rusEFI master.2024.04.20.f407-discovery.1195752310"
#define SIGNATURE_HASH 455146772
#define TS_SIGNATURE "rusEFI master.2024.04.20.f407-discovery.455146772"

View File

@ -2,5 +2,5 @@
// was generated automatically by rusEFI tool config_definition-all.jar based on gen_config.sh by SignatureConsumer
//
#define SIGNATURE_HASH 3809755159
#define TS_SIGNATURE "rusEFI master.2024.04.20.f429-discovery.3809755159"
#define SIGNATURE_HASH 3211855477
#define TS_SIGNATURE "rusEFI master.2024.04.20.f429-discovery.3211855477"

Some files were not shown because too many files have changed in this diff Show More