| 1462 | } |
| 1463 | |
| 1464 | GCodeResult Heat::ProcessM307New(const CanMessageHeaterModelNewNew& msg, const StringRef& reply) noexcept |
| 1465 | { |
| 1466 | const auto h = FindHeater(msg.heater); |
| 1467 | return (h.IsNotNull()) ? h->SetModel(msg.heater, msg, reply) : UnknownHeater(msg.heater, reply); |
| 1468 | } |
| 1469 | |
| 1470 | GCodeResult Heat::SetTemperature(const CanMessageSetHeaterTemperature& msg, const StringRef& reply) noexcept |
| 1471 | { |
no test coverage detected