misleading table axis checker names

This commit is contained in:
Matthew Kennedy 2024-07-08 15:33:40 -07:00
parent 4d1945cf0c
commit 7485362dec
1 changed files with 3 additions and 3 deletions

View File

@ -559,7 +559,7 @@ bool validateConfig() {
return false;
}
ensureArrayIsAscending("Batt Lag", engineConfiguration->injector.battLagCorrBins);
ensureArrayIsAscending("Injector deadtime", engineConfiguration->injector.battLagCorrBins);
// Fueling
{
@ -609,7 +609,7 @@ bool validateConfig() {
// todo: huh? why does this not work on CI? ensureArrayIsAscendingOrDefault("Dwell Correction Voltage", engineConfiguration->dwellVoltageCorrVoltBins);
ensureArrayIsAscending("MAF decoding", config->mafDecodingBins);
ensureArrayIsAscending("MAF transfer function", config->mafDecodingBins);
// Cranking tables
ensureArrayIsAscending("Cranking fuel mult", config->crankingFuelBins);
@ -630,7 +630,7 @@ bool validateConfig() {
if (cfg.pin == Gpio::Unassigned) {
continue;
}
ensureArrayIsAscending("VR Bins", cfg.rpmBins);
ensureArrayIsAscending("VR threshold", cfg.rpmBins);
}
#if EFI_BOOST_CONTROL