stray returns?

This commit is contained in:
Matthew Kennedy 2023-11-17 17:50:52 -08:00
parent 35c84cf13b
commit 86d57343b1
1 changed files with 6 additions and 3 deletions

View File

@ -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;
} }
} }