From 061e02638452fe2353eb26e6d7799a81ab45e597 Mon Sep 17 00:00:00 2001 From: Scott Lahteine Date: Sun, 8 Dec 2024 23:42:11 -0600 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20Remove=20extra=20hotend=20temp?= =?UTF-8?q?=20update?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Followup to #24898 --- Marlin/src/module/temperature.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/Marlin/src/module/temperature.cpp b/Marlin/src/module/temperature.cpp index 45dae77d5e..ab59328517 100644 --- a/Marlin/src/module/temperature.cpp +++ b/Marlin/src/module/temperature.cpp @@ -3781,7 +3781,6 @@ void Temperature::update_raw_temperatures() { temp_bed.update(); #endif - TERN_(HAS_TEMP_ADC_2, temp_hotend[2].update()); TERN_(HAS_TEMP_ADC_3, temp_hotend[3].update()); TERN_(HAS_TEMP_ADC_4, temp_hotend[4].update()); TERN_(HAS_TEMP_ADC_5, temp_hotend[5].update());