Auto-generated configs and docs

This commit is contained in:
GitHub gen-configs Action 2023-02-15 14:11:11 +00:00
parent 18d93bf30f
commit bfc5d33e0b
2 changed files with 14 additions and 2 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 enum2string.jar tool on Wed Feb 15 13:44:53 UTC 2023
// was generated automatically by rusEFI tool from rusefi_enums.h // by enum2string.jar tool on Wed Feb 15 14:10:22 UTC 2023
// see also gen_config_and_enums.bat
@ -117,6 +117,15 @@ case TransmissionControllerMode::SimpleTransmissionController:
}
return NULL;
}
const char *getTriggerWheel(TriggerWheel value){
switch(value) {
case TriggerWheel::T_PRIMARY:
return "T_PRIMARY";
case TriggerWheel::T_SECONDARY:
return "T_SECONDARY";
}
return NULL;
}
const char *getTsCalMode(TsCalMode value){
switch(value) {
case TsCalMode::EtbKd:

View File

@ -1,4 +1,4 @@
// was generated automatically by rusEFI tool from rusefi_enums.h // by enum2string.jar tool on Wed Feb 15 13:44:53 UTC 2023
// was generated automatically by rusEFI tool from rusefi_enums.h // by enum2string.jar tool on Wed Feb 15 14:10:22 UTC 2023
// see also gen_config_and_enums.bat
@ -24,6 +24,9 @@ const char *getSentEtbType(SentEtbType value);
const char *getTransmissionControllerMode(TransmissionControllerMode value);
#endif //__cplusplus
#if __cplusplus
const char *getTriggerWheel(TriggerWheel value);
#endif //__cplusplus
#if __cplusplus
const char *getTsCalMode(TsCalMode value);
#endif //__cplusplus
const char *getAir_pressure_sensor_type_e(air_pressure_sensor_type_e value);