rusefi 2023-08-27 13:59:00 -04:00
parent cf82019b91
commit fb5e3f96b4
2 changed files with 30 additions and 0 deletions

View File

@ -162,3 +162,18 @@ void setBoardDefaultConfiguration() {
setTPS1Calibration(100, 650);
hellenWbo();
}
static Gpio OUTPUTS[] = {
H144_LS_1,
H144_LS_2,
H144_LS_3,
H144_LS_4,
};
int getBoardMetaOutputsCount() {
return efi::size(OUTPUTS);
}
Gpio* getBoardMetaOutputs() {
return OUTPUTS;
}

View File

@ -163,3 +163,18 @@ void setBoardDefaultConfiguration() {
engineConfiguration->etbFunctions[1] = DC_Wastegate;
}
static Gpio OUTPUTS[] = {
H144_LS_1,
H144_LS_2,
H144_LS_3,
H144_LS_4,
};
int getBoardMetaOutputsCount() {
return efi::size(OUTPUTS);
}
Gpio* getBoardMetaOutputs() {
return OUTPUTS;
}