Skip to content
Snippets Groups Projects
Unverified Commit b0aad414 authored by Pascal de Bruijn's avatar Pascal de Bruijn Committed by GitHub
Browse files

Use Preheat 1 as M303 default (#18407)

parent eb5f8b69
Branches
Tags
No related merge requests found
...@@ -169,7 +169,13 @@ void menu_cancelobject(); ...@@ -169,7 +169,13 @@ void menu_cancelobject();
#if ENABLED(PID_AUTOTUNE_MENU) #if ENABLED(PID_AUTOTUNE_MENU)
#if ENABLED(PIDTEMP) #if ENABLED(PIDTEMP)
int16_t autotune_temp[HOTENDS] = ARRAY_BY_HOTENDS1(150); #ifdef PREHEAT_1_TEMP_HOTEND
#define PID_TUNE_TEMP PREHEAT_1_TEMP_HOTEND
#else
#define PID_TUNE_TEMP 200
#endif
int16_t autotune_temp[HOTENDS] = ARRAY_BY_HOTENDS1(PID_TUNE_TEMP);
#undef PID_TUNE_TEMP
#endif #endif
#if ENABLED(PIDTEMPBED) #if ENABLED(PIDTEMPBED)
... ...
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment