From bfcf7dcfe8c00f2db86753d7eff6bd9dcb1c90f0 Mon Sep 17 00:00:00 2001 From: Scott Lahteine Date: Sun, 13 Sep 2020 18:43:10 -0500 Subject: [PATCH] Finish comment --- Marlin/src/module/temperature.cpp | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/Marlin/src/module/temperature.cpp b/Marlin/src/module/temperature.cpp index 206c1223994a..b96b39e3d167 100644 --- a/Marlin/src/module/temperature.cpp +++ b/Marlin/src/module/temperature.cpp @@ -1939,11 +1939,13 @@ void Temperature::init() { /** * @brief Thermal Runaway state machine for a single heater - * @param current the current measured temperature - * @param target the current target temperature - * @param - * + * @param current current measured temperature + * @param target current target temperature + * @param heater_id extruder index + * @param period_seconds missed temperature allowed time + * @param hysteresis_degc allowed distance from target * + * TODO: Embed the last 3 parameters during init, if not less optimal */ void Temperature::tr_state_machine_t::run(const float ¤t, const float &target, const heater_id_t heater_id, const uint16_t period_seconds, const uint16_t hysteresis_degc) {