Skip to content

Commit acda6dc

Browse files
committed
require new config
1 parent bc77b2a commit acda6dc

File tree

2 files changed

+2
-18
lines changed

2 files changed

+2
-18
lines changed

Marlin/src/inc/Conditionals_post.h

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -3352,19 +3352,3 @@
33523352
FIL_RUNOUT5_PULLDOWN, FIL_RUNOUT6_PULLDOWN, FIL_RUNOUT7_PULLDOWN, FIL_RUNOUT8_PULLDOWN)
33533353
#define USING_PULLDOWNS 1
33543354
#endif
3355-
3356-
// Set AUTOTEMP defaults
3357-
#if ENABLED(AUTOTEMP)
3358-
#ifndef AUTOTEMP_MAX
3359-
#define AUTOTEMP_MAX 250
3360-
#endif
3361-
#ifndef AUTOTEMP_MIN
3362-
#define AUTOTEMP_MIN 210
3363-
#endif
3364-
#ifndef AUTOTEMP_FACTOR
3365-
#define AUTOTEMP_FACTOR 0.1f
3366-
#endif
3367-
#ifndef AUTOTEMP_ENABLED
3368-
#define AUTOTEMP_ENABLED false
3369-
#endif
3370-
#endif

Marlin/src/module/planner.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -201,8 +201,8 @@ float Planner::mm_per_step[DISTINCT_AXES]; // (mm) Millimeters per step
201201
skew_factor_t Planner::skew_factor; // Initialized by settings.load()
202202

203203
#if ENABLED(AUTOTEMP)
204-
celsius_t Planner::autotemp_max = AUTOTEMP_MAX,
205-
Planner::autotemp_min = AUTOTEMP_MIN;
204+
celsius_t Planner::autotemp_min = AUTOTEMP_MIN,
205+
Planner::autotemp_max = AUTOTEMP_MAX;
206206
float Planner::autotemp_factor = AUTOTEMP_FACTOR;
207207
bool Planner::autotemp_enabled = AUTOTEMP_ENABLED;
208208
#endif

0 commit comments

Comments
 (0)