This commit is contained in:
rusefillc 2021-01-22 02:02:16 -05:00
parent aa477f2bcd
commit 6bc882f30a
4 changed files with 14 additions and 0 deletions

View File

@ -21,4 +21,5 @@
#define show_test_presets false
#define show_Frankenso_presets false
#define show_microRusEFI_presets false
#define show_Proteus_presets false

View File

@ -821,3 +821,9 @@ void setMiataNB2_ProteusEngineConfiguration(DECLARE_CONFIG_PARAMETER_SIGNATURE)
}
#endif // HW_PROTEUS
#if HW_HELLEN
void setMiataNB2_Hellen72(DECLARE_CONFIG_PARAMETER_SIGNATURE) {
strcpy(CONFIG(vehicleName), "H72 test");
}
#endif // HW_HELLEN

View File

@ -52,4 +52,10 @@ void setMiataNB2_Proteus_TCU(DECLARE_CONFIG_PARAMETER_SIGNATURE);
*/
void setMiataNB2_ProteusEngineConfiguration(DECLARE_CONFIG_PARAMETER_SIGNATURE);
/**
* set engine_type 69
*/
void setMiataNB2_Hellen72(DECLARE_CONFIG_PARAMETER_SIGNATURE);

View File

@ -1230,6 +1230,7 @@ void resetConfigurationExt(Logging * logger, configuration_callback_t boardCallb
#endif // HW_PROTEUS
#if HW_HELLEN
case HELLEN_NB2:
setMiataNB2_Hellen72(PASS_CONFIG_PARAMETER_SIGNATURE);
break;
#endif // HW_HELLEN
#if HW_FRANKENSO