mirror of https://github.com/rusefi/wideband.git
stray returns?
This commit is contained in:
parent
35c84cf13b
commit
86d57343b1
|
@ -73,12 +73,15 @@ static void HeaterThread(void*)
|
||||||
auto& h = heaterControllers[i];
|
auto& h = heaterControllers[i];
|
||||||
switch (GetSensorType()) {
|
switch (GetSensorType()) {
|
||||||
case SensorType::LSU42:
|
case SensorType::LSU42:
|
||||||
return h.Configure(730, 80);
|
h.Configure(730, 80);
|
||||||
|
break;
|
||||||
case SensorType::LSUADV:
|
case SensorType::LSUADV:
|
||||||
return h.Configure(785, 300);
|
h.Configure(785, 300);
|
||||||
|
break;
|
||||||
case SensorType::LSU49:
|
case SensorType::LSU49:
|
||||||
default:
|
default:
|
||||||
return h.Configure(780, 300);
|
h.Configure(780, 300);
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue