Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions Marlin/src/module/probe.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -370,10 +370,6 @@ FORCE_INLINE void probe_specific_action(const bool deploy) {
DEBUG_ECHOPGM("hotend (", hotendPreheat, ")");
thermalManager.setTargetHotend(hotendPreheat, 0);
}
else if(hotendPreheat==0 && IS_SD_PRINTING()==0)
{
thermalManager.setTargetHotend(LEVELING_NOZZLE_TEMP, 0);
}
#elif ENABLED(WAIT_FOR_BED_HEAT)
constexpr celsius_t hotendPreheat = 0;
#endif
Expand All @@ -385,10 +381,6 @@ FORCE_INLINE void probe_specific_action(const bool deploy) {
DEBUG_ECHOPGM("bed (", bedPreheat, ")");
thermalManager.setTargetBed(bedPreheat);
}
else if(bedPreheat == 0 && IS_SD_PRINTING()==0)
{
thermalManager.setTargetBed(LEVELING_BED_TEMP);
}
#endif

DEBUG_EOL();
Expand Down