Reduce code duplication in setTargetHotendSafe
This commit is contained in:
parent
7d82cd641e
commit
ccaecc87aa
|
|
@ -149,8 +149,7 @@ FORCE_INLINE void setTargetHotend(const float &celsius, uint8_t extruder) {
|
||||||
static inline void setTargetHotendSafe(const float &celsius, uint8_t extruder)
|
static inline void setTargetHotendSafe(const float &celsius, uint8_t extruder)
|
||||||
{
|
{
|
||||||
if (extruder<EXTRUDERS) {
|
if (extruder<EXTRUDERS) {
|
||||||
target_temperature[extruder] = celsius;
|
setTargetHotend(celsius, extruder);
|
||||||
resetPID(extruder);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue