Skip to content

Commit 67487b3

Browse files
thinkyheadX-Ryl669
authored andcommitted
getHighESpeed => autotemp_task
1 parent bc85593 commit 67487b3

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

Marlin/src/module/planner.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1382,7 +1382,7 @@ void Planner::check_axes_activity() {
13821382
sync_fan_speeds(tail_fan_speed);
13831383
#endif
13841384

1385-
TERN_(AUTOTEMP, getHighESpeed());
1385+
TERN_(AUTOTEMP, autotemp_task());
13861386

13871387
#if ENABLED(BARICUDA)
13881388
TERN_(HAS_HEATER_1, analogWrite(pin_t(HEATER_1_PIN), tail_valve_pressure));
@@ -1432,7 +1432,7 @@ void Planner::check_axes_activity() {
14321432
* based on the extrusion speed, which is calculated from the blocks
14331433
* currently in the planner.
14341434
*/
1435-
void Planner::getHighESpeed() {
1435+
void Planner::autotemp_task() {
14361436
static float oldt = 0;
14371437

14381438
if (!autotemp_enabled) return;

Marlin/src/module/planner.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -926,7 +926,7 @@ class Planner {
926926
static bool autotemp_enabled;
927927
static void autotemp_update();
928928
static void autotemp_M104_M109();
929-
static void getHighESpeed();
929+
static void autotemp_task();
930930
#endif
931931

932932
#if HAS_LINEAR_E_JERK

0 commit comments

Comments
 (0)