From 4a1e5cad34157dc5993b16853dfea10d37b15635 Mon Sep 17 00:00:00 2001 From: Elliott Indiran Date: Wed, 1 Sep 2021 21:26:22 -0700 Subject: [PATCH 1/2] Correct reference to the HOTENDS macro in Configuration.h comment --- Marlin/Configuration.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Marlin/Configuration.h b/Marlin/Configuration.h index 418c25aef758..5f7bb8e65bd9 100644 --- a/Marlin/Configuration.h +++ b/Marlin/Configuration.h @@ -596,7 +596,7 @@ #if ENABLED(PID_PARAMS_PER_HOTEND) // Specify between 1 and HOTENDS values per array. - // If fewer than EXTRUDER values are provided, the last element will be repeated. + // If fewer than HOTENDS values are provided, the last element will be repeated. #define DEFAULT_Kp_LIST { 22.20, 22.20 } #define DEFAULT_Ki_LIST { 1.08, 1.08 } #define DEFAULT_Kd_LIST { 114.00, 114.00 } From 39efde624764028072eadab558ab6fea15083c8e Mon Sep 17 00:00:00 2001 From: Scott Lahteine Date: Thu, 2 Sep 2021 22:15:53 -0500 Subject: [PATCH 2/2] Update Configuration.h --- Marlin/Configuration.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Marlin/Configuration.h b/Marlin/Configuration.h index 5f7bb8e65bd9..5a70d3267186 100644 --- a/Marlin/Configuration.h +++ b/Marlin/Configuration.h @@ -595,8 +595,8 @@ // Set/get with gcode: M301 E[extruder number, 0-2] #if ENABLED(PID_PARAMS_PER_HOTEND) - // Specify between 1 and HOTENDS values per array. - // If fewer than HOTENDS values are provided, the last element will be repeated. + // Specify up to one value per hotend here, according to your setup. + // If there are fewer values, the last one applies to the remaining hotends. #define DEFAULT_Kp_LIST { 22.20, 22.20 } #define DEFAULT_Ki_LIST { 1.08, 1.08 } #define DEFAULT_Kd_LIST { 114.00, 114.00 }